.register-page {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.register-page__title {
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
}

.register-form {
    background: #AED2EC;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
}

.register-form__field {
    margin-bottom: 20px;
}

.register-form__field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C3E50;
}

.textfield {
    width: 100%;
    padding: 12px;
    border: 1px solid #E1F5FE;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.textfield:focus {
    outline: none;
    border-color: #2C3E50;
}

.register-form__btn {
    width: 100%;
    padding: 15px;
    background: #2C3E50;
    color: #FFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.register-form__btn:hover {
    background: #1A5276;
}

.register-form__login {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.register-form__login a {
    color: #2C3E50;
    font-weight: 600;
    text-decoration: underline;
}a.register-page {
    padding: 40px 15px;
    background: #f5f5f5;
}

.register-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
    background: #AED2EC;
    border-radius: 12px;
}

.register-form__text {
    flex: 1;
    max-width: 400px;
}

.register-form__title {
    font-size: 32px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.register-form__text p {
    color: #555;
    line-height: 1.5;
}

.register-form__form {
    flex: 1;
}

.register-form__field {
    margin-bottom: 20px;
}

.register-form__field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2C3E50;
}

.textfield {
    width: 100%;
    padding: 12px;
    border: 1px solid #E1F5FE;
    border-radius: 8px;
    font-size: 16px;
}

.register-form__btn {
    width: 100%;
    padding: 15px;
    background: #2C3E50;
    color: #FFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.register-form__btn:hover {
    background: #1A5276;
}

.register-form__agree {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.register-form__agree a {
    color: #0b2833;
    text-decoration: underline;
}

.register-form__login {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.register-form__login a {
    color: #2C3E50;
    font-weight: 600;
    text-decoration: underline;
}