* {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #fff;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 18px;
    margin-bottom: 20px;
}

label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-size: 16px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 5px;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

input[type="submit"] {
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #000;
    background-color: #f0f0f0;
    border-radius: 5px;
}

input[type="submit"]:hover {
    background-color: #ddd;
}

.forgot-password {
    margin-top: 15px;
}

.forgot-password a {
    color: blue;
    text-decoration: underline;
    font-size: 14px;
}

#btn_login{
    color: black;
}