* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url(../images/Mesa-de-trabajo-1-copia-1-e1704323253508.png);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 20px;
}

.login-elementos {
    background-color: #ffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0px 0px 1px 1px #F37321;
}

.imagen-usuario {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

h2 {
    color: black;
}

p {
    color: #aaaaaa;
    margin-bottom: 20px;
}

.div-input {
    position: relative;
    margin-bottom: 15px;
}

.div-input i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #F37321;
}

.div-input input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    background-color: transparent;
    color: black;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #F37321;
}

.div-input input:focus {
    border-color: #16163f;
    outline: none;
}

.recuperar-password {
    display: block;
    margin-bottom: 20px;
    color: #F37321;
    text-decoration: none;
    text-align: right;
}

.button {
    background-color: #F37321;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.button:hover {
    background-color: #16163f;
}

.sign-up {
    color: #F37321;
    text-decoration: none;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .login-elementos {
        padding: 20px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .login-elementos {
        padding: 15px;
    }

    .btn {
        padding: 12px;
    }
}
