/* Custom Login Page Styling */

.custom-login-page-body {
    background-image: url('../images/bglogin.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	background-attachment: fixed;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-login-page-body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: -1;
	pointer-events: none;
}

.login-container {
    max-width: 350px;
    padding: 20px;
    width: 100%;
    z-index: 3;
}

.site-icon-wrapper {
    margin-bottom: 20px;
}

.login-container img {
    display: block;
    margin: 0 auto;
    width: 100px;
    border-radius: 50%;
}

.login-site-title {
    font-size: x-large;
    text-align: center;
    margin-bottom: 20px;
}

.login-site-title a {
    text-decoration: none;
    color: #fff;
}

/* Styling form login */
#mediapress-registerform,
#mediapress-loginform {
    display: flex;
    flex-direction: column;
}

#mediapress-registerform p,
#mediapress-loginform p {
    margin: 0;
}

.login-container label {
    color: #fff;
    font-size: 13px;
}

/* Gaya tambahan untuk input dan tombol */
.login-container input[type="text"],
.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    box-sizing: border-box;
}

#wp-submit {
    width: 100%;
    background-color: #0073aa;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    margin-top: 10px;
}

.login-navigation {
    text-align: center;
    font-size: small;
    font-weight: bold;
    color: #ccc;
}

.login-navigation a {
    color: #ccc;
}