/* styles.css */

/* 全局樣式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* 註冊表單的樣式 */
.register-form {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 超連結樣式 */
.link {
    margin-top: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: rgb(100, 215, 215);
}

.link:hover {
    color: rgb(50, 150, 150);
}
