/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@600&display=swap'); */


*{
    margin: 0;
    padding: 0;
}
body{

    width: 100%;
    height: 100vh;
    font-family: 'Roboto';
    background-color: #081322;
    /* background: rgb(1,2,24);
    background: linear-gradient(184deg, rgba(1,2,24,1) 1%, rgba(1,6,20,1) 15%, rgba(0,0,0,1) 57%); */

}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    /* border: 1px solid white; */
    -webkit-text-fill-color: white !important;
    /* -webkit-box-shadow: 0 0 0px 1000px #000 inset; */
    transition: background-color 5000s ease-in-out 0s;
}

#img{
    position: relative;
    margin-left: 70px;
    margin-bottom: 20px;
    margin-top: -21px;
}
#form{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 60px;
    width: min-content;
    background-color:#191c24;
    align-items: center;
    color: #8f9296;
    opacity: 0.7;
    box-shadow: 0 17px 30px 0 rgb(0 0 0 / 25%), 0 16px 40px 0 rgb(0 0 0 / 25%), 0 3px 9px -1px rgb(0 0 0 / 25%)
    /* color: #2b344b; */

}
.title{
    font-size: 1.8em;
    margin-bottom: 10%;

}
.input{
    min-width: 280px;
    border-radius: 22px;
    border: 1px solid   #8f9296;
    padding: 5px;
    margin: 0px 0px 12px -5px;
}
.input i{
    font-size: 1.2em;
    padding: 5px;
    /* background: -webkit-linear-gradient(184deg, rgba(1,2,24,1) 1%, rgba(1,6,20,1) 15%, rgba(0,0,0,1) 57%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */

    }

    .input input{
        width: 85%;
        border: none;
        outline: none;
        font-family: 'Roboto';
        transform: translateY(-10%);
        color: #6f7e8a;
        /* color: #2b344b; */
        font-size: 11pt;
        background: initial;
    }
    #btn{
        margin-top: 10%;
        width: 100%;
        text-align: center;

    }
    #btn button{
        font-family: 'Roboto';
        background-color: #081322;
       /* background:  linear-gradient(184deg, rgba(1,2,24,1) 1%, rgba(1,6,20,1) 15%, rgba(0,0,0,1) 57%); */
        width: 100%;
        height: 40px;
        border: none;
        font-size: 1.2em;
        border-radius: 20px;
        cursor: pointer;
        color: #8f9296;
        /* color: #2b344b; */
        transition: 0.3s;

    }
    #btn button:hover{
        opacity: 1;
        background-color: #15273f !important;
        /* background:  linear-gradient(184deg, rgba(1,2,24,1) 1%, rgba(1,6,20,1) 15%, rgba(0,0,0,1) 57%); */
        
    }

    @media (max-width: 480px) {

        #form{
            width: 64% ;
            padding: 42px 20px !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        #img{
            margin-left: 55px;
            margin-bottom: 40px;
        }

        .input{
            min-width: 240px ;
            margin: 0px 0px 10px 0px ;
        } 
    }


