body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #EFEFEF;
    min-height: 100vh;
    position: relative;
    background-image: url("../img/logo-cortado.png"), url("../img/KENJO1-corte.png");
    background-size: 30%, 25%;
    background-position: left bottom, right bottom;
    background-repeat: no-repeat;
}

@media (max-width: 600px) {
    body {
        background-size: 40%, 35%;
    }
}

.container {
    max-width: 400px;
    margin: 80px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    padding-bottom: 25px;
    transition: box-shadow 0.3s ease-in-out;
}

.container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.image-container img {
    max-width: 50px;
    max-height: 45px;
}

h1 {
    text-align: center;
    color: #333333;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    color: #555555;
}

input {
    width: 94%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
    border-color: #37456d;
    box-shadow: 0 0 5px rgba(55, 69, 109, 0.5);
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #37456d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s ease-in-out;
}

button:hover {
    background-color: #1961AD;
    box-shadow: 0 4px 10px rgba(25, 97, 173, 0.4);
}

.titulo {
    margin: 50px auto;
    text-align: center;
    color: #37456d;
}
