html, body, main {
    width: 100%;
    height: 100%;
    background-color: var(--bg-01);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background-color: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 560px;
    height: 750px;
    /* height: 73.24%; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    overflow-y: auto;
}

.login-card .top-card {
    padding: 17.33% 14.29%;
	padding-bottom: 0;
}

.login-card .top-card .text-center {
    height: 31px;
    width: 159px;
    margin: 0 auto;
    margin-bottom: 12.93%;
}

.login-card .top-card .text-center .logo-img .logo > img {
	width: 100%;
	height: 100%;
}

.login-copy {
    display: flex;
    justify-items: center;
    align-items: end;
    padding-bottom: 4.4%;
    padding-left: 7.68%;
    padding-right: 8.57%;
    justify-content: space-between;
}
.login-copy .copy-img {
    width: 123px;
    height: 50px;
}

.login-copy .copy-img > img {
    width: 100%;
    height: 100%;
    object-fit:scale-down;
    transform: translateY(6.9px);
}
.login-copy > p {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    
    margin-left: 1%;
	text-align: right;
    white-space: nowrap;
}

.main-forms .form-control {
    border: 1px solid var(--grey);
}
.main-forms .form-control::placeholder {
    color: var(--grey);
	font-size: 20px !important;
}
.main-forms .form-control.in {
    height: 55px;
    font-size: 20px !important;
}
.remember {
    display: flex;
    align-items: center;
}

.remember input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--black);
    appearance: none;
    cursor: pointer;
}
.remember input[type="checkbox"]:checked {
    position: relative;
} 
.remember input[type="checkbox"]:checked::before {
     position: absolute;
    content: '';
    color: var(--primary);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    font-size: 13px;
    height: 15px;
    width: 15px;
    background-color: var(--primary);
    border-radius: 50%;
} 

.remember-label {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
    margin-left: 12px;
}

.login-btn{
    padding-top: 22px;
}

.login-btn > button {
    border: none;
    width: 100%;
    height: 55px;
    background-color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color:  var(--white);
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal {
    border-radius: 10px;
}
.swal2-header {
    display: none;
}

.swal2-html-container {
    padding: 10%;
    font-weight: 700;
    font-size: 16px;
}

.swal2-styled.swal2-confirm {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    
}

.swal2-popup {
    width: 340px;
    height: 190px;
}

@media screen and (max-width: 630px){
	.login-copy {
		justify-content: center;
		flex-direction: column;
            align-items: center;
	}
	.login-copy .copy-img {
		margin-bottom: 10px;
	}

	.login-copy > p {
		text-align: center;
	}
    .login-card {
        height: 630px;
    }
}


@media screen and (max-width: 445px) {
    .login-card {
        height: 580px;
    }
    .login-copy > p {
        font-size: 11px;
	}
}

@media screen and (max-width: 350px) {
    .login-card {
        height: 540px;
    }

    .login-copy > p {
        font-size: 9px;
	}
}