@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Nunito Sans", sans-serif !important;
}

.custom-login-wrapper {
    display: flex;
    height: 100vh;
}

.login-form-container {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2%;
    background-color: #fff;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.login-message {
    margin-bottom: 20px;
}

.login-form-container h2 {
  	position: relative;
  	color: #093C79;
 	font-size:1.65em;
	margin-bottom:15px;
}



.footer-text {
    text-align: center; 
	margin-top: 20px;
}

.login-image-container {
    flex: 0 0 75%;
}

.login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#t3_login_form .button {
    background-color: #093C79; 
    color: #fff; 
    border: 1px solid #093C79;
    padding: 10px;
    cursor: pointer;
    width: 100%;
	transition:all 0.6s;
}
#t3_login_form .button:hover {
    background-color: #000; 
    color: #fff; 
    border: 1px solid #000;
	-webkit-box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
	-moz-box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
	box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
}


.message-box {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid transparent;
}

.icon {
    font-size: 20px;
    margin-right: 10px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.success-icon {
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.error-icon {
    color: #721c24;
}
.login-username {
	margin-top:15px;
}

#t3_login_form {
    margin-top: 35px;
}

#t3_login_form p {
    display: flex;
    position: relative;
    margin-bottom: 25px;
    flex-direction: column;
    flex-wrap: nowrap;
}

#t3_login_form label {
    text-transform: uppercase;
    position: absolute;
    font-size: 10px;
    padding: 0 5px;
    background: #fff;
    margin-left: 15px;
	top: -5px;
	transition: all 0.6s;
}

#t3_login_form input {
    height: 45px;
    border: 1px solid #bfbfbf;
	padding-left: 15px;
	transition:all 0.6s;
}
#t3_login_form input:focus-visible {
	border-radius:0;
	border: 1px solid #093C79;
	outline: none;
	-webkit-box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
	-moz-box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
	box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
}
#t3_login_form input:active {
	-webkit-box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
	-moz-box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
	box-shadow: 0px 9px 11px -5px rgb(39 39 40 / 55%);
}
#t3_login_form .login-username:focus-within label {
    color: #093C79;
}
#t3_login_form .login-password:focus-within label {
    color: #093C79;
}

.footer-text {
	color:#bfbfbf;
	font-size: 0.85em;
}
.footer-text .t3_version {
	margin-bottom:0;
}
.footer-text a{
	color:#bfbfbf;
	text-decoration:none;
	transition:all 0.6s;
}
.footer-text a:hover{
	color:#093C79;
}