#wp-toolbar {
  display: none;
}
#wpadminbar {
  height: 2px !important;
  background: #3146c5 !important;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
body.page-template-login {
  background-color: #0a1523;
}


/* Κεντρικό wrapper */
#page-wrapper {
    width: 100%;
    max-width: 1200px;
	background-color: transparent;
}

/* Το container με διάφανο φόντο */
#content-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
/*
#woffice-login {
    width: 100%;
    max-width: 900px;
    background: #ffffff; 
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}
*/
/* Το αριστερό κομμάτι (εικόνα / bg) */
/*#woffice-login-left {
    flex: 1;
    min-height: 400px;
    background: url(https://topothetisis.maison-deluxe.gr/wp-content/uploads/2025/04/topothetisis-logo.png) no-repeat center;
    background-size: cover;
}*/

/* Το δεξί κομμάτι (φόρμα σύνδεσης) */
#woffice-login-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-tabs-wrapper {
    width: 100%;
}

#loginform {
    display: flex;
    flex-direction: column;
}

#loginform p {
    margin-bottom: 20px;
}

/* Footer στο login page */
#login-footer {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 12px;
}
#loginform input[type="text"],
#loginform input[type="password"] {
    background-color: #0a1523; 
    color: white !important;
    transition: background-color 0.3s ease;
}

#loginform input[type="text"]:focus,
#loginform input[type="password"]:focus {
    background-color: #0a1523; 
    color: white !important;
}

#loginform input[type="text"]:-webkit-autofill,
#loginform input[type="password"]:-webkit-autofill {
    box-shadow: 0 0 0 30px #0a1523 inset !important;
    -webkit-box-shadow: 0 0 0 30px #0a1523 inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}
}

@media (max-width: 768px) {
    #content-container {
        flex-direction: column;
        max-width: 90%;
    }

    #woffice-login {
        flex-direction: column;
        box-shadow: none;
    }

    #woffice-login-left {
        height: 200px;
        background-size: contain;
        background-position: center;
    }

    #woffice-login-right {
        padding: 20px;
    }
	
}



/* Fade in Animation */
#content-container {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}