html, body {
    margin: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
    background-image: url('./images/freepik__talk__19842.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

#login-container {
    max-width: 400px;
    width: 100%;
    background: rgba(217, 217, 217, 0.7);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* Form title */
.form-container h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

/* Inputs */
.form-container input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: none;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    transition: 0.3s ease;
}

.form-container input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Button */
.form-container button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background-color: #007BFF;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-container button:hover {
    background-color: #0056b3;
}

/* Paragraph below button */
.form-container p {
    text-align: center;
    margin-top: 15px;
    color: #444;
}

.form-container p a {
    color: #007BFF;
    text-decoration: none;
}

.form-container p a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 500px) {
    #login-container {
        padding: 30px 20px;
    }

    .form-container h1 {
        font-size: 24px;
    }
}
