* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	cursor:default;
	font-family:"Inter";
	text-decoration:none;
}
*:focus {
    outline:none;
}
body {
	width:100vw;
	height:100vh;
	position:relative;
	display:flex;
	flex-direction:row;
	touch-action: pan-x pan-y;
	align-items:flex-start;
}
#loginMain {
	width: 100vw;
	min-height: 100vh;
	display: flex;
	flex-direction: row;
}
#loginCol1 {
	width: 727px;
	background: #EBE8FE;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}
#loginCol1Content {
    width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: auto;
}
#loginCol1Logo {
    margin: 0px 0px 12vh 0px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
#loginCol1Logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
#loginCol1Text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.loginCol1TextLine {
    color: #373542;
    font-weight: 400;
    font-size: 32px;
}
#loginCol2 {
	width: calc(100% - 727px);
	background: #F5F5F7;
	display: flex;
	flex-direction: column;
    padding: 48px 40px;
    align-items: center;
    justify-content: center;
    
}
#loginCol2Header {
    width: 100%;
    max-width: 460px;
    font-size: 34px;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 24px;
    text-align: center;
}
#loginCol2Form,
#loginCol2NewPass {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
}
#loginCol2Form > * + *,
#loginCol2NewPass > * + * { margin-top: 16px; }

.loginCol2Description {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.loginCol2Field {
    display: flex;
    flex-direction: column;
}
.loginCol2Label {
    font-size: 12px;
    color: #6A6A6A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
#loginCol2InputUser,
#loginCol2InputPass,
#loginCol2InputNewPass,
#loginCol2InputConfirmPass {
    width: 100%;
    height: 54px;
    border: 1px solid #CCC6FB;
    border-radius: 16px;
    background: #FFFFFF;
    padding: 0 14px;
    font-size: 14px;
    color: #1F1F1F;
    transition: border-width 0.2s ease, border-color 0.2s ease;
}
#loginCol2InputUser:hover,
#loginCol2InputPass:hover,
#loginCol2InputNewPass:hover,
#loginCol2InputConfirmPass:hover {
    border-width: 5px;
}
#loginCol2InputUser:focus,
#loginCol2InputPass:focus,
#loginCol2InputNewPass:focus,
#loginCol2InputConfirmPass:focus {
    border-width: 5px;
    animation: loginInputBorderBounce 300ms ease-out;
}
@keyframes loginInputBorderBounce {
    0% {
        border-left-width: 5px;
        border-right-width: 5px;
        border-top-width: 5px;
        border-bottom-width: 5px;
    }
    50% {
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 3px;
        border-bottom-width: 3px;
    }
    100% {
        border-left-width: 5px;
        border-right-width: 5px;
        border-top-width: 5px;
        border-bottom-width: 5px;
    }
}
#loginCol2Options {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}
#loginCol2Remember {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}
#loginCol2Remember .loginCol2RememberLabel { margin-left: 8px; }

#loginCol2RememberInput {
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #DDD9FD;
    border: 1px solid #9A8DF8;
    border-radius: 6px;
    position: relative;
    display: inline-block;
}
.no-touch #loginCol2RememberInput:hover {
    border-color: #8C7EF6;
}
#loginCol2RememberInput:checked {
    background: #5641F3;
    border-color: #5641F3;
}
#loginCol2RememberInput:checked::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 45%;
    width: 5px;
    height: 9px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    box-sizing: border-box;
}
.loginCol2RememberLabel {
    font-size: 13px;
    color: #2D2D2D;
}
#loginCol2Forgot {
    font-size: 13px;
    color: #373542;
    cursor: pointer;
}
#loginCol2Messages,
#loginCol2NewPassMessages {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 0 14px;
    color: #1F1F1F;
    background: transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
#loginCol2Messages.success,
#loginCol2NewPassMessages.success {
    color: #157C3B;
    border-color: #157C3B;
    background: #EAF6EF;
}
#loginCol2Messages.error,
#loginCol2NewPassMessages.error {
    color: #C8102E;
    border-color: #C8102E;
    background: #FDECEF;
}
#loginCol2Submit,
#loginCol2NewPassSubmit {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5641F3;
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.05s ease, opacity 0.2s ease;
}
#loginCol2Submit:hover,
#loginCol2NewPassSubmit:hover {
    opacity: 0.92;
}
#loginCol2Submit:active,
#loginCol2NewPassSubmit:active {
    transform: scale(0.99);
}
