/* public/css/login.css */

* {
    box-sizing: border-box;
}


body {
    background-color: #add8e6;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    margin-bottom: 30px;
    color: white;
    font-size: 28px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: white;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #ff69b4;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ff85c1;
}
@media screen and (max-width: 600px) {
    .login-container {
        width: 350px;
    }
}