/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY */
body {
    background-color: #f4f9f6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER */
.login-container {
    background-color: #ffffff;
    width: 380px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header img {
    height: 60px;
    margin-bottom: 10px;
}

.login-header h2 {
    color: #0f8f3f;
    margin-bottom: 5px;
}

.login-header p {
    font-size: 14px;
    color: #666;
}

/* FORM */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BUTTON */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #0f8f3f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #0b6e31;
}

.alert {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.alert-error {
    background-color: #fdecea;
    color: #b71c1c;
    border: 1px solid #f5c6cb;
}

.password-wrapper{
    position: relative;
    width: 100%;
}

.password-wrapper input{
    width: 100%;
    padding: 10px 45px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.toggle-password{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 18px;
}

.toggle-password:hover{
    color: #0f8f3f;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}