* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body, html {
    height: 100%;
    background: linear-gradient(rgba(240, 88, 0, 0.904), rgba(238, 151, 70, 0.795)),
                url('Imágenes/Fondo.jpg') center/cover no-repeat;
}

.login-container {
    height: 100%;   
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    width: 300px;
}

.avatar {
    width: 100px;              /* Tamaño del avatar */
    height: 100px;
    border-radius: 50%;        /* Esto lo hace circular */
    object-fit: cover;         /* Asegura que se vea bien centrada */
    margin-bottom: 15px;
    border: 3px solid white;   /* (opcional) Borde blanco alrededor */
    box-shadow: 0 0 10px rgba(0,0,0,0.2); /* (opcional) Sombra suave */
}

h2 {
    color: white;
    margin-bottom: 25px;
}

input {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0;
    border: none;
    border-radius: 20px;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #555;
}

.forgot, .create {
    display: block;
    margin-top: 15px;
    color: #ddd;
    text-decoration: none;
    font-size: 0.9em;
}

.forgot:hover, .create:hover {
    text-decoration: underline;
}

.password-container {
    position: relative;
    width: 100%;
}

.password-container input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.mensaje {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.mensaje {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}
