#loginform {
    min-width: 400px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#loginform input[type="text"],
#loginform input[type="password"] {
    width: 100%;
    height: 50px;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
#loginform input[type="submit"] {
    background-color: #d4b102;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 auto 10px;
    display: block;
}
.login-error {
    color: #b00020;
    background: #ffe5e5;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;

}
.login-links {
    margin-top: 10px;
    text-align: center;
}
.remember-me {
    margin-bottom: 10px;
}
.logged-in-msg {
    text-align: center;
    background: #f0fff0;
    padding: 20px;
    border-radius: 10px;
}
.back-to-home {
    text-align: center;
    margin-top: 20px;
}
.back-to-home a {
    color: #d4b102;
    font-weight: bold;
    text-decoration: none;
}
.back-to-home a:hover {
    text-decoration: underline;
}

.custom-login-logo {
    text-align: center;
    margin-bottom: 20px;
}
.custom-login-logo img {
    max-width: 325px;
    height: auto;
}

.password {
    position: relative;
}
.password button {
    position: absolute;
    margin:0;
    top: 39px;
    right: 10px;
    padding: 0;
    border: 0;
}

.password button img{
    width: 30px;
    height: auto;
}