/* Dedicated CSS for the login page */
body {
    background: url('/assets/images/sfondo.webp') no-repeat center center fixed;
    background-size: cover;
}
.password-wrapper {
    position: relative;
    width: 100%;
}
.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
    padding-right: 38px;
    font-family: inherit;
    font-size: 1.1em;
    line-height: 1.2;
    letter-spacing: normal;
    height: 44px;
    box-sizing: border-box;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 1.1em;
    z-index: 2;
    user-select: none;
}
.toggle-password:hover {
    color: #222;
}

.col-90 { width: 90%; }
.col-10 { width: 10%; }
.ml-5 { margin-left: 5px; }
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 32px 28px 28px 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.13);
    background: #fff;
}
.login-container h1 {
    font-family: 'Kanit', Arial, sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}
.login-container label {
    font-weight: 500;
    color: #666;
}
.login-container input[type="email"],
.login-container input[type="password"],
.login-container input[type="text"] {
    font-family: inherit;
    font-size: 1.1em;
    line-height: 1.2;
    letter-spacing: normal;
    height: 44px;
    box-sizing: border-box;

    font-size: 1.1em;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    margin-bottom: 12px;
    background: #f9f9f9;
    transition: border 0.2s;
}
.login-container input[type="email"]:focus,
.login-container input[type="password"]:focus {
    border-color: #3498db;
    background: #fff;
}
.login-container button[type="submit"] {
    background: #27ae60;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1em;
    transition: background 0.2s;
}
.login-container button[type="submit"]:hover {
    background: #219150;
}
.login-container .w3-panel.w3-red {
    border-radius: 8px;
    font-size: 1em;
}
.login-container .w3-text-blue {
    font-size: 0.96em;
}
.login-container .w3-row {
    align-items: center;
}
.login-container .w3-button {
    background: #f5f7fa;
    border: 1px solid #d1d5db;
}
.login-container .w3-button:active {
    background: #eaeaea;
}
