@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --MainColor: #00968d;
    --NetroWhite: white;
    --NetroBlack: black;
    --TextColor: #333333;
    --LabelColor: #a1a1a1;
}

body {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.passwd_view_toggle {
    cursor: pointer;
    color: var(--LabelColor);
}


/* Login */

.AF_ThreedyAr_LoginFormContainer {
    background-color: transparent;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.AF_Gbl_Frame {
    background-color: transparent;
    height: 100%;
    width: 100%;
}

.AF_LoginForm {
    background-color: var(--NetroWhite);
    height: 100vh;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-top-left-radius: 20% 70%;
    /* H and V */
    border-bottom-left-radius: 20% 70%;
    /* H and V */
}

.AF_Logo {
    width: 200px;
}

.AF_LoginForm_Title {
    font-size: 40px;
    font-weight: 500;
    color: var(--MainColor);
}

.AF_LoginForm_SubTitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--TextColor);
}

.AF_LoginForm_Link {
    color: var(--MainColor);
    text-decoration: none;
    font-size: 18px;
    font-weight: 450;
}

.AF_InputContainer {
    background-color: transparent;
    position: relative;
    outline: none;
    padding: 5px 0px;
    border-bottom: thin solid var(--LabelColor);
    cursor: pointer;
}

.AF_InputField_Label {
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    color: var(--LabelColor);
    transform: translate(0px, 0px);
    transition: all 200ms ease-in-out;
    cursor: pointer;
}

.AF_InputField {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0px;
    font-size: 17px;
    font-weight: 300;
}

.AF_Input_ErrorMsg {
    color: #ff4d4d;
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

.AF_InputContainer:-webkit-autofill .AF_InputField_Label,
.AF_InputContainer:-moz-placeholder .AF_InputField_Label,
.AF_InputContainer:valid .AF_InputField_Label,
.AF_InputContainer:focus-within .AF_InputField_Label {
    transform: translate(0px, -27px);
}

.AF_Form_Btn {
    background-color: var(--MainColor);
    color: var(--NetroWhite);
    padding: 10px 20px;
    border-radius: 5px;
    outline: none;
    border: none;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.AF_Outline_Btn {
    background-color: transparent;
    border: 1px solid var(--MainColor);
    color: var(--MainColor);
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.AF_Gbl_Content {
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    display: block;
    width: 100%;
    text-align: center;
    background-color: transparent;
}

.thadr_space {
    background-color: red;
}

.AF_Gbl_Hr {
    border: 0;
    width: 100%;
    height: 1px;
    background: lightgrey;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}


/* Gbl - Moblie View , Tablet */

.AF_FullScreen_Gbl {
    height: 90vh;
    width: 100%;
}


/* Form PopUp */

.AF_FormPopUp {
    display: block;
    position: absolute;
    bottom: -100vh;
    z-index: 9999;
    background-color: var(--NetroWhite);
    width: 100%;
    height: calc(100px * 7);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    transition: all 300ms ease-in-out;
}


/* AF_FormPopUp_FormContainer */

.AF_FormPopUp_FormContainer {
    width: 400px;
}


/* Dark Overlay */

.AF_DarkOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 99;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}


/* Media Query */

@media only screen and (max-width:992.98px) {
    .AF_Logo {
        width: 300px;
    }
}

@media only screen and (max-width:575.98px) {
    .AF_Logo {
        width: 250px;
    }
    /* FormPopUp */
    .AF_FormPopUp {
        height: 90vh;
    }
    /* AF_FormPopUp_FormContainer */
    .AF_FormPopUp_FormContainer {
        width: 100%;
        padding: 0px 31px;
    }
}