@import url(common-styles.css);

.login-form-body {
    background-color: var(--mamlaka-light-blue2);
    min-height: 100vh;
}
.login-header {
    height: 11rem;
    display: flex;
    overflow: hidden;
}
.header-bg{
    width: 170px;
    position: absolute;
    opacity: .9;
    
}
.login-header-content {
    display: flex;
    margin: auto;
}
.login-header-content .header-logo {
    text-align: center;
    align-items: center;    
    padding: .2rem;
    margin: auto;
    padding-right: .9rem;
}
.login-header-content .header-title {
    text-align: center;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    padding-left: .9rem;
    margin: auto;
    border-left: 1px solid var(--white);
}
.login-header-content img {
    height: 50px;
}
.login-form {
    height: 31rem;
    display: flex;
    justify-content: center;
}

/* LOGIN FORM Styles*/
.login-form-content {
    display: flex;
    width: 90%;
    overflow: hidden;
    background: var(--color-background);
}
.login-form-section {
    flex-basis: 50%;
    margin: auto;
    padding: 0 2rem 0 3rem;
}
.login-form-section a {
    font-weight: 500;
    color: var(--jewel);
}
.login-form-section a:hover {
    color: var(--mamlaka-light-blue2);
}
.login-form-section .subtitle {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid black;
}
.login-form-section .subtitle a {
    color: var(--jewel);
}
.login-form-section .subtitle a:hover {
    color: var(--mamlaka-light-blue2);
}
.login-form-section .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--jewel);
}
.login-form-section p {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.login-button {
    margin-bottom: .6rem;
}
.login-button button {
    width: 7.4rem;
    height: 2.3rem;
    background: var(--jewel);
    color: var(--white);
}
.login-button button:hover {
    background: var(--mamlaka-light-blue2);
    cursor: pointer;
}
.login-button a {
    padding: 5px 11px;
    background: var(--jewel);
    color: var(--white);
}
.login-button a:hover {
    background: var(--mamlaka-light-blue2);
    cursor: pointer;
    color: var(--white);
}
.login-imgs {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
}
.login-img {
    height: 290px;
    width: 250px;
    margin-top: .7rem;
}
.login-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-right-images {
    margin-left: 1.3rem;  
    transform: translateY(-150px);  
}
.login-left-images {
    transform: translateY(-100px);
}
.input-fields {
    display: flex;
    flex-direction: column;
    width: 70%;
}
.input-field {
    margin-bottom: .7rem;
    padding: .7rem;
    border: 1px solid var(--shadow);
    width: 100%;
}
.login-footer {
    height: 10rem;
    width: 100%;
    background-color: var(--mamlaka-light-blue2);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1rem;
}
.login-footer p{
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
.login-footer-img {
    display: flex;
    justify-content: center;
}
.login-footer-img img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    opacity: .1;
}
.tooltip-info {
    /* visibility: hidden; */
    width: 10rem;
    height: 6rem;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    margin-left: -60px;
    transform: translateY(30px);
}
.tooltip-info::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 35%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
  }
  
  /* LICENCE DETAILS TABLE */
.licence-verification-form {
	display: flex;
}
.licence-verification-form .input-fields {
	flex-basis: 70%;
	padding-right: 5px;
}
.licence-verification-form .login-button {
	flex-basis: 30%;
}
.licence-details-header {
	font-size: 15px !important;
	font-weight: 600 !important;
	color: var(--mamlaka-light-blue2);
}
.verified-licence-details {
	border: 1px solid black;
	width: 100%;
	display: flex;
	flex-direction: column;
}
.verified-licence-details:last-child {
	border-bottom: none;
}
.details-row {
	display: flex;
	border-bottom: 1px solid black;
}
.details-attribute {
	flex-basis: 50%;
	padding: 5px 7px;
	border-right: 1px solid black;	
	font-size: 12px;
	font-weight: 600;
}
.details-value {
	flex-basis: 50%;
	padding: 5px 7px;
	font-size: 12px;
}

  

@media screen and (max-width:900px) {
    .login-imgs {
        display: none;
    }
    .login-form-section {
        flex-basis: 100%;
    }
    .input-fields {
        width: 100%;
    }
    .login-header-content .header-title {
        font-size: 1.2rem;
    }
    .login-header-content img {
        height: 40px;
    }
}