.signup-page {
    min-height: calc(100vh - 56px);
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

.signup-card {
    width: 430px;
}

.signup-header {
    margin-bottom: 34px;
}

.signup-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 8px;
}

.signup-header p {
    font-size: 14px;
    color: #4b5563;
}

/* PROFILE */
.profile-upload {
    text-align: center;
    margin-bottom: 28px;
}

.profile-box {
    width: 72px;
    height: 72px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px dashed #c7ccd6;
    border-radius: 10px;

    background: #f7f5fa;

    position: relative;
    cursor: pointer;
}

.profile-box > i {
    font-size: 22px;
    color: #6b7280;
}

.camera {
    position: absolute;
    right: -6px;
    bottom: -6px;

    width: 25px;
    height: 25px;

    background: #17233f;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
}

.profile-upload p {
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #46546d;
    font-weight: 600;
}

/* FORM */
.signup-form {
    width: 100%;
}

.auth-message {
    border-radius: 4px;
    margin-bottom: 18px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.5;
}

.auth-message p + p {
    margin-top: 4px;
}

.auth-message-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-group {
    margin-bottom: 18px;
}

.form-group > label {
    display: block;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;

    color: #4b5563;
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid #cfd3dc;
    border-radius: 4px;

    background: #fbf9fd;

    padding: 0 14px;

    font-size: 14px;
    color: #1f2937;

    outline: none;
}

.form-group input {
    height: 44px;
}

.form-group textarea {
    min-height: 94px;
    padding-top: 12px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7b8494;
}

.vendor-fields[hidden] {
    display: none;
}

.vendor-form-section {
    border: 1px solid #d4d6dd;
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 18px;
}

.vendor-form-section h2 {
    color: #14213d;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 16px;
}

.vendor-form-section .form-group:last-child {
    margin-bottom: 0;
}

/* ACCOUNT TYPE */
.account-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.account-type input {
    display: none;
}

.account-type label {
    height: 42px;

    border: 1px solid #cfd3dc;
    border-radius: 4px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    color: #333b4a;

    cursor: pointer;
}

.account-type input:checked + label {
    background: #cfe0f8;
    border-color: #426b9f;
    color: #34445f;
}

/* PASSWORD */
.password-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* TERMS */
.terms-row {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 8px 0 26px;
}

.terms-row input {
    width: 14px;
    height: 14px;
}

.terms-row label {
    font-size: 12px;
    color: #4b5563;
}

.terms-row a {
    color: #14213d;
    text-decoration: none;
    font-weight: 600;
}

/* BUTTON */
.create-btn {
    width: 100%;
    height: 46px;

    background: #17233f;
    color: white;

    border: none;
    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    cursor: pointer;

    box-shadow: 0 4px 8px rgba(0,0,0,0.18);
}

.login-text {
    text-align: center;
    margin-top: 24px;

    font-size: 13px;
    color: #4b5563;
}

.login-text a {
    color: #14213d;
    font-weight: 700;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 520px) {
    .signup-card {
        width: 100%;
    }

    .password-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
