.signup {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.signup-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
}

.signup-header {
    text-align: center;
    margin-bottom: 35px;
}

.signup-logo {
    font-size: 32px;
    font-weight: 700;
    color: #2e4053;
    margin-bottom: 15px;
}

.signup-title {
    font-size: 24px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 8px;
}

.signup-subtitle {
    font-size: 14px;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 8px;
    display: block;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #212121;
    outline: none;
    transition: all 0.3s;
    font-family: "DM Sans", sans-serif;
}

.form-input:focus {
    border-color: #2e4053;
    box-shadow: 0 0 0 3px rgba(46, 64, 83, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: #2e4053;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.password-strength {
    margin-top: 8px;
    font-size: 12px;
}

.strength-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 5px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s;
    border-radius: 2px;
}

.strength-text {
    color: #666;
    font-weight: 500;
}

.terms-label {
    display: flex;
    align-items: start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 25px;
}

.terms-label input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #2e4053;
    cursor: pointer;
    flex-shrink: 0;
}

.terms-label a {
    color: #2e4053;
    font-weight: 600;
    text-decoration: none;
}

.terms-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: #2e4053;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "DM Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #1a2733;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 64, 83, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.form-divider span {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.social-signup {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #212121;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "DM Sans", sans-serif;
}

.social-btn:hover {
    border-color: #2e4053;
    background: #f8f9fa;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.form-footer a {
    color: #2e4053;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.form-footer a:hover {
    opacity: 0.8;
}

.benefits-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.benefits-title {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 12px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-list li::before {
    content: '✓';
    color: #388e3c;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 576px) {
    .signup-container {
        padding: 30px 20px;
    }

    .signup-title {
        font-size: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-signup {
        flex-direction: column;
    }
}