/* Login Page Styles */

.login-container {
    max-width: 400px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.login-container h2 {
    background: linear-gradient(90deg, #fd192a 0%, #40b4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #40b4e0;
    box-shadow: 0 0 5px rgba(64, 180, 224, 0.3);
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #fd192a 0%, #40b4e0 100%);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.login-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fbfcfd 0%, #ffffff 100%);
    border-radius: 5px;
    border: 1px solid #40b4e0;
    color: #1f2937;
    font-size: 0.9rem;
}

.login-info h4 {
    background: linear-gradient(90deg, #fd192a 0%, #ffb700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.login-info p {
    margin: 0.3rem 0;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex: 1;
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #40b4e0;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #fd192a;
}

/* Auth Container (for login, register, forgot password) */
.auth-container {
    max-width: 450px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-title {
    background: linear-gradient(90deg, #fd192a 0%, #40b4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.auth-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-form {
    margin-top: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #40b4e0;
    box-shadow: 0 0 0 3px rgba(64, 180, 224, 0.1);
}

.auth-button {
    width: 100%;
    background: linear-gradient(135deg, #fd192a 0%, #40b4e0 100%);
    color: white;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 25, 42, 0.3);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #40b4e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: #fd192a;
}

/* Confirmation Box Styles */
.confirmation-box {
    text-align: center;
    padding: 1rem 0;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.confirmation-box h3 {
    background: linear-gradient(90deg, #fd192a 0%, #40b4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirmation-box p {
    margin: 0.75rem 0;
    color: #1f2937;
}

.confirmation-text {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(253, 25, 42, 0.05) 0%, rgba(64, 180, 224, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid #40b4e0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.password-display {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-radius: 8px;
    border: 2px solid #10b981;
}

.password-display code {
    user-select: all;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.password-display strong {
    color: #1f2937;
}
