@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*,*::before,*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;



    font-family:  "Inter", sans-serif !important;
}


html, body {
    padding: 0;
    margin: 0;
    
    height: 100%;
    width: 100%;

    overflow-x: hidden;
    overflow-y: hidden;
}


body{
    background-image: linear-gradient(90deg ,#D8D8D8, #EDEDED );
    display: grid;
    place-content: center;
}

.login_screen{
    width: 550px;
    background-image: linear-gradient(300deg ,#e2e2e2, #bfbfbf);

    display: flex;
    justify-content: space-evenly;
    flex-direction: column;

    padding: 50px 50px 20px 90px ;
    gap: 30px;
}

.login_screen input{
    border: none;
    height: 40px;

    font-size: 1.2rem;
    font-weight: 300;

    padding: 10px 30px;

    color: rgba(0, 0, 0, 0.608);

}

.login_screen input:focus{
    outline: none;
}

.login_screen input::placeholder{
    font-style: italic;
    color: #0000003c;
}

.button_div{
    /* outline: 1px    solid; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button_div button{
    cursor: pointer;
}

.button_div button:nth-of-type(1){

    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.3rem;
    background-color: rgb(99, 99, 99);
    color: white;
    font-style: italic;
    font-weight: 250;
    border: none;
    padding: 3px 30px;
    border-radius: 20px;

}

.button_div a{
    cursor: pointer;
    display: flex;
    color: inherit;
    border: none;
    background-color: transparent;

    font-size: 1.5rem;
    text-decoration: underline;
    font-style: italic;
    font-weight: 200;
    letter-spacing: 0.15rem;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;

}

