.signup-wrapper {
    width: 100%;
    max-width: 620px;
    padding: 50px 20px;
    margin: 0 auto;
}

.signup-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.signup-header {
    text-align: center;
    margin-bottom: 26px;
}

.signup-header h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1f2a33;
    margin-bottom: 6px;
}

.signup-header p {
    font-size: 13px;
    color: #6b747b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 14px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 8px;
    border: 1px solid #d7dce0;
    font-size: 14px;
    transition: .2s;
}

input:focus {
    outline: none;
    border-color: #0f7f8c;
    box-shadow: 0 0 0 3px rgba(15, 127, 140, .12);
}

.terms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #59636a;
    margin: 10px 0 16px;
    line-height: 1.4;
}

.terms input {
    width: 20px;
    height: 20px;
}

.terms a {
    color: #0f7f8c;
    text-decoration: none;
    font-weight: 700;
}

.btn-signup {
    width: 100%;
    padding: 12px;
    background: #0f7f8c;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
}

.btn-signup:hover {
    background: #0b6f7a;
    transform: translateY(-1px);
}

.login-link {
    text-align: center;
    font-size: 13px;
    margin-top: 16px;
    color: #666;
}

.login-link a {
    color: #0f7f8c;
    font-weight: 800;
    text-decoration: none;
}

/* forgot password */
.wrapper {
    width: 100%;
    max-width: 380px;
    padding: 20px;
    margin: 0 auto;
}

/* ---------- CARD ---------- */
.card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.text-half {
    text-align: center;
    margin-bottom: 26px;
}

.text-half h1 {
    font-size: 24px;
    font-weight: 800;
    color: #1f2a33;
    margin-bottom: 6px;
}

.text-half p {
    font-size: 13px;
    color: #6b747b;
    line-height: 1.5;
}

.back {
    font-size: 14px;
    margin-top: 10px;
}

@media(max-width:520px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .signup-card {
        padding: 28px 20px;
    }
}