
body {
    background-color: whitesmoke;
}

.picture{
    display: flex;
    justify-content: center;
    width: 100%;
}

.container-login{
    justify-content: center;
    text-align: center;
    display: flex;
}
.login {
    margin: 100px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    height: 500px;

    h2 {
        margin-bottom: 20px;
        color: #333;
        font-size: xxx-large;
    }

    .input-box {
        display: flex;
        justify-content: center;
        margin: 20px;
    }

    .text-box {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 200px;
        height: 50px;
        margin: 40px;
    }

    .login-button {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: bold;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .login-button:hover {
        background: linear-gradient(135deg, #0056b3, #003d80);
        transform: scale(1.05);
    }

    .login-button:active {
        transform: scale(0.95);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

}




