/* Add styles specific to the login page */
body, html {
    color: white;
    background: linear-gradient(135deg, #0f3460, #16213e, #1a1a2e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h2 {
    color: #5ee7df;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(94, 231, 223, 0.3);
}

/* Add more styles specific to the login page */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(22, 33, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(42, 108, 145, 0.4), 
                0 0 0 1px rgba(94, 231, 223, 0.1);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(42, 108, 145, 0.6), 
                0 0 0 1px rgba(94, 231, 223, 0.2);
}

.login-form h2 {
    margin-bottom: 30px;
    text-align: center;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 2px solid rgba(94, 231, 223, 0.2);
    border-radius: 10px;
    background: rgba(15, 52, 96, 0.5);
    color: white;
    font-size: 1rem;
    font-family: 'Rubik', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input[type="text"]::placeholder,
.login-form input[type="password"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: #5ee7df;
    background: rgba(15, 52, 96, 0.7);
    box-shadow: 0 0 0 4px rgba(94, 231, 223, 0.1);
}

.login-form button {
    width: 100%;
    margin-top: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #5ee7df, #b794f6);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(94, 231, 223, 0.3);
}

.login-form button:hover {
    background: linear-gradient(135deg, #2A6C91, #5ee7df);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 231, 223, 0.5);
}

.login-form button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(94, 231, 223, 0.3);
}
