/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #00000000; /* Light grey color */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

/* Login Container */
.login-container {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-container h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.login-container p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #000000;
}

/* Form Styles */
form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

form input:focus {
    border-color: #ffffff;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

form button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #ffffff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ffffff;
}

/* Signup Link */
.signup-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #d5d5d5;
}

.signup-link a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}
