/* ===== LOGIN PAGE ===== */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    min-height: 100vh;
}

/* ===== TITLE PAGE ===== */

.wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.row {
    min-width: 100vw;
    min-height: 100vh;
    position: relative;
}

.gradient-bg {
    position: relative;
    left: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background-color: #003A62;
    background-image: linear-gradient(90deg,rgba(0, 58, 98, 1) 0%, rgba(42, 105, 91, 1) 26%, rgba(118, 191, 77, 1) 55%, rgba(149, 197, 70, 1) 80%, rgba(0, 58, 98, 1) 100%);
    background-size: 250% 250%;
    /* animation: gradientShift 18s ease-in-out infinite; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.adalogo {
    width: 700px;
    margin: 0 auto;
    padding: 30px;
    /* padding-top: 20%; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 10px;
    position: center;
    top: 40px;
    bottom: 20px;
    left: 300px;
	  right: 50px;
}

/* ===== LOGIN FORM FEATURES ===== */

.login-content {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 36%;
    /* background-color: rgb(248,248,255); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 40px;
}

.login-header {
    font-size: 2.5rem;
    font-family: var(--font-family-heading);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.login-content .input-div{
	position: center;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 7% 93%;
	grid-template-columns: 7% 93%;
	margin: 25px 0;
	padding: 5px 0;
	border-bottom: 2px solid #A9A9A9;
}

.login-form {
    /* width: 360px; */
    margin: 0 auto;
    padding: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border-radius: 10px;
    position: center;
}

.login-text {
    font-size: 15px;
    color: #696969;
    text-align: center;
    margin-bottom: 20px;
}

input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #000;
    font-size: 14px;
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #555 !important;
}

.input-div {
    position: relative;
    margin-bottom: 20px;
    outline: none;
}

.input-div .i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #696969;
    outline: none;
    transition: 0.3s;
}

.input-div:focus-within .i {
    color: var(--color-primary-muted);
}

.input-div h5 {
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #696969;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    outline: none;
    pointer-events: none;
}

.input-div.pass .fa-eye {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #A9A9A9;
  cursor: pointer;
  z-index: 3; 
  display: block;
  transition: 0.3s;
}

.input-div.pass .fa-eye:hover {
  color: var(--color-primary-muted);
}

.input-div > div{
	position: relative;
	height: 45px;
}

.input-div:before, .input-div:after{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 0%;
	height: 2px;
	background-color: var(--color-primary-muted);
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}

.input-div.focus:before, .input-div.focus:after{
	width: 100%;
  outline: none;
}

.input-div.focus > div > h5{
    top: -10px;
    left: 8px;
    padding: 0 4px;
    background: #fff;
    font-size: 12px;
  outline: none;
}

.input-div > div > input{
	position: left;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0.5rem 0.7rem;
	font-size: 0.9rem;
	color: #555;
	font-family: 'Poppins', sans-serif;
}

#dateandtime {
	text-align: center;
	padding: 10px 0 0;
	font-size: .7em;
	color: #777777;
	font-weight: bold;
}

.btn-primary-login{
	display: block;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	outline: none;
	border: none;
	background-color: var(--color-primary);
	background-size: 200%;
	font-size: 1.2rem;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	margin: 1rem 0;
	cursor: pointer;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.btn:hover {
    background-position: right;
}


/* ===== FORGOT PASSWORD FEATURE ===== */

.forgot-password-btn {
    background: none !important;
    border: none !important;
    color: #696969 !important;
    text-decoration: underline !important;
    font-size: 14px !important;
    font-weight: normal !important;
    cursor: pointer !important;
    padding: 5px 10px !important;
    margin: 0 auto !important;
    display: inline-block !important;
    text-transform: none !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background-image: none !important;
} 

.forgot-password-btn:hover {
    background-position: right;
}

.forgot-password-container {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.modal-content {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    max-width: 350px;
    width: 90%;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #696969;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
    text-align: center;
}

.modal-text {
    font-size: 14px;
    color: #696969;
    margin-bottom: 20px;
    text-align: center;
}

.modal-footer-text {
    font-size: 12px;
    color: #696969;
    text-align: center;
    margin-top: 15px;
}

.modal-input {
    width: 100%;
    height: 40px;
    margin-bottom: 15px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.modal-button {
    width: 100%;
    padding: 10px;
    background: -webkit-gradient(linear, left top, right top, from(#32be8f), to(#38d39f));
    background: -o-linear-gradient(left, #32be8f, #38d39f);
    background: linear-gradient(to right, #32be8f, #38d39f);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: background-position 0.3s ease;
    -o-transition: background-position 0.3s ease;
    transition: background-position 0.3s ease;
    background-size: 200% auto;
}

.modal-button:hover {
    background-position: right center;
}

.return-login {
    background: none !important;
    border: none !important;
    color: #696969 !important;
    text-decoration: underline !important;
    font-size: 14px !important;
    font-weight: normal !important;
    cursor: pointer !important;
    padding: 5px 10px !important;
    margin: 0 auto !important;
    display: inline-block !important;
    text-transform: none !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background-image: none !important;
}

/* ===== RESET PASSWORD PAGE ===== */

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container .mobile-logo {
    display: none;
}

.login-logo {
    margin-top: -50px;
    width: 290px;
    height: 65px;
}

.login-content h2 {
    margin: 15px 0;
    color: #333;
    font-size: 2.5rem;
}

input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #000;
    font-size: 14px;
    outline: none;
}

.input-div {
    position: relative;
    margin-bottom: 20px;
}

.input-div h5 {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #696969;
    font-size: 14px;
    transition: 0.3s;
    pointer-events: none;
}

.input-div input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 16px 12px 10px;
    font-size: 0.9rem;
    color: #696969;
    font-family: 'Poppins', sans-serif !important;
    z-index: 1;
}

.input-div.pass .fa-eye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #A9A9A9;
    cursor: pointer;
    z-index: 3;
    display: block;
}

.input-div.pass > div > input {
    padding-right: 40px;
}

.btn:hover {
    background-position: right;
}

.return-login {
    background: none !important;
    border: none !important;
    color: #696969 !important;
    text-decoration: underline !important;
    font-size: 14px !important;
    font-weight: normal !important;
    cursor: pointer !important;
    padding: 5px 10px !important;
    margin: 0 auto !important;
    display: inline-block !important;
    text-transform: none !important;
    width: auto !important;
    height: auto !important;
}

.return-login:hover {
    color: var(--color-primary) !important;
}

/* ===== RESET PASSWORD FORM ===== */

.reset-password-form {
    font-family: 'Poppins', sans-serif !important;
    width: 360px;
    margin: 0 auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
}

.reset-password-form h2 {
    margin: 15px 0;
    color: #333;
    font-size: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif !important;
}

.reset-password-form .input-div {
    font-family: 'Poppins', sans-serif !important;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 7% 93%;
    padding: 5px 0;
    border-bottom: 2px solid #A9A9A9;
    outline: none;
}

.reset-password-form .input-div:before,
.reset-password-form .input-div:after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: .4s;
}

.reset-password-form .input-div:before {
    right: 50%;
}

.reset-password-form .input-div:after {
    left: 50%;
}

.reset-password-form .input-div.focus:before,
.reset-password-form .input-div.focus:after {
    width: 50%;
    outline: none;
}

.reset-password-form .input-div .i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #696969;
    transition: 0.3s;
    outline: none;
}

.reset-password-form .input-div:focus-within .i {
    color: var(--color-primary);
}

.reset-password-form .input-div > div {
    position: relative;
    height: 45px;
}

.reset-password-form .input-div > div > h5 {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #696969;
    font-size: 14px;
    font-family: 'Poppins', sans-serif !important;
    transition: .3s;
    outline: none;
    pointer-events: none;
}

.reset-password-form .input-div.focus > div > h5 {
    top: -10px;
    left: 8px;
    padding: 0 4px;
    background: #fff;
    font-size: 12px;
    outline: none;
}

.reset-password-form .input-div > div > input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0.7rem;
    font-size: 0.9rem;
    color: #555;
    font-family: 'Poppins', sans-serif !important;
}

.reset-password-form .input-div.pass .fa-eye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #A9A9A9;
    cursor: pointer;
    z-index: 3;
    display: block;
    transition: 0.3s;
}

.reset-password-form .input-div.pass .fa-eye:hover {
    color: var(--color-primary);
}

.reset-password-form,
.reset-password-form h2,
.reset-password-form h5,
.reset-password-form input,
.reset-password-form .input-div,
.reset-password-form .btn,
.reset-password-form .return-login,
.reset-password-form .alert {
    font-family: 'Poppins', sans-serif !important;
}

.reset-password-form .alert {
    font-family: 'Poppins', sans-serif !important;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.reset-password-form .text-center {
    text-align: center;
}

.reset-password-form .mt-3 {
    margin-top: 1rem;
}

.reset-password-form .btn-primary {
    background-image: linear-gradient(to right, var(--color-primary), var(--color-primary));
    background-size: 100%;
}