/* Import Font */
@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');
/* Global Css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* Login Page */
.auth-container{
    overflow: hidden;
    position: relative;
}
.auth-form-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-form{
    width: 100%;
    height: 100%;
    /* overflow: auto; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(128, 128, 128, 1) 100%);
    /* border-right: 1px solid #e0e0e0; */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    & img{
        width: 60px;
        height: auto;
    }
    & h2{
        font-size : 22px;
    }
    & p{
        font-size : 13px;
        margin-top : -20px;
    }
    & .divider{
        width: 100%;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.05);
        margin: 5px 0;
    }
    & form{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 5px 0;
    }
    & .form-group{
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-bottom: 8px;
        & label{
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
        }
        & input,
        & select{
            width: 100%;
            padding: 10px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            font-size: 14px;
            color: #333;
            transition: all .3s ease-in-out;
            background : #fff;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            &:focus{
                outline: none;
                border-color: #259ED7;
            }
        }
    }
    & .terms{
        width: 100%;
        display: flex;
        align-items: center;
        & input{
            margin-right: 10px;
        }
    }
    & .btn{
        width: 100%;
        margin-top: 20px;
        border: none;
        outline: none;
        padding: 14px 0;
        background-color: #259ED7;
        border-radius: 5px;
        color: #fff;
        transition: all .3s ease-in-out;
        cursor: pointer;
        &:hover{
            background-color: #999;
            color: white;
        }
    }
}