/* styles-login.css */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background: url('background_small.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); /* Adds a semi-transparent overlay */
}

.login-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-container h1 {
    margin: 0 0 20px;
    font-family: 'Henny Penny', cursive;
    color: #ff758c;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.login-form input {
    width: calc(100% - 30px);
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    background: rgba(233, 240, 253, 1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.login-form input:focus {
    background: rgba(233, 240 253, 1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.login-form button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.login-form button:hover {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    transform: scale(1.05);
}

.register-text {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

.register-text a {
    color: #ff758c;
    text-decoration: none;
    font-weight: bold;
}

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