/*    Specific for the Register page   */
.signup-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.signup-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #e94560, #0f3460);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.signup-header p {
    color: #b8b8b8;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ddd;
}

.input-field {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #0f3460;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: #e94560;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.input-field::placeholder {
    color: #a0a0a0;
}

.error-message {
    color: #ff6b81;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.success-message {
    color: #4cd964;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.password-strength {
    margin-top: 8px;
    height: 5px;
    border-radius: 5px;
    background: #0f3460;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.strength-weak {
    background: #ff6b81;
    width: 33%;
}

.strength-medium {
    background: #ffd166;
    width: 66%;
}

.strength-strong {
    background: #4cd964;
    width: 100%;
}

.submit-registerInfo-btn {
    width: 100%;
    padding: 15px;
    background: #e94560;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-registerInfo-btn:hover {
    background: #ff6b81;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.submit-registerInfo-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.login-link {
    text-align: center;
    margin-top: 25px;
    color: #b8b8b8;
}

.login-link a {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #b8b8b8;
}

.terms input {
    margin-top: 3px;
}

.terms a {
    color: #e94560;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .signup-container {
        padding: 30px 20px;
    }

    .signup-header h1 {
        font-size: 2rem;
    }
}