body {
   
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.titulooo {
    text-align: center;
    margin-bottom: 20px;
    background-color: #45a04900;
    border-radius: 20px;
    width: 500px;
   
}

h1 {
    font-size: 2.5rem;
    color: white;
}

.cajas {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px;
    
}

.password-wrapper img {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px;
    height: 24px;
}

input[type="submit"] {
    background-color: #e12020;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #7f2424;
}

.user {
    background-color: #f0f0f0;
    width: 180px;
    height: 175px;
    border-radius: 100px;
    position: relative;
    display: flex;
    margin: 0px auto;
    padding: center;
    display: flex;
    justify-content: center;
    align-items: center;
}