* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background: url('login-bg.png') center center fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding-top: 100px;
}

.center-login {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4%;
}

form {
    background-color: whitesmoke;
    height: 500px;
    width: 450px;
    padding: 30px;
    border-radius: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center-login form label {
    font-size: 20px;
    margin: 15px 10px 5px 10px;
}

.center-login label span {
    color: #ee8215;
}

.center-login h1 {
    font-size: 30px;
    text-align: center;
}

input[name="username"],
input[name="password"] {
    text-align: left;
    margin: 5px 0px 10px 10px;
    padding: 5px 0px 5px 8px;
    width: 95%;
    border: none;
    background-color: transparent;
    border-bottom: #402000 1px solid;
    font-size: 16px;
}

input[name="submit"] {
    margin: 10px 20px 10px 20px;
    width: 90%;
    border-radius: 8px;
    padding: 20px 0 20px 0;
    background-color: #ee8215;
    border: none;
    color: whitesmoke;
    font-size: 16px;
    transition: ease-out .3s;
}

input[name="submit"]:hover {
    transform: scale(1.1);
    font-size: 16px;
    background-color: #48494b;
    color: #ee8215;
    font-weight: bold;
}

.center-login p {
    font-size: 16px;
    text-align: center;
}

.password-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

input[name="password"] {
    padding-right: 40px; /* Leave space for the button */
}

.show-password-btn {
    position: absolute;
    top: 47px; /* Center vertically */
    right: 15px; /* Align to the right */
    transform: translateY(-50%);
    cursor: pointer;
    color: #48494b;
    font-size: 16px;
    background: none;
    border: none;
    outline: none;
}