@import url('https://fonts.googleapis.com/css2?family=Poppins');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: poppins;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: gray; */
}

.card{
    border: none;
    border-radius: 20px;
    height: 500px;
    width: 350px;
    display: flex;
    flex-direction: column;
    padding-top: 75px;
    background: #1f07ff2a;
    box-shadow: 20px 20px 60px #ffffff,
                -20px -20px 60px #ffffff;
}

form{
    height: 90%;
    width: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    gap: 30px;
    input{
        border: none;
        width: 80%;
        height: 55px;
        border-radius: 8px;
        font-size: 20px;
        padding-left: 15px;
        outline: none;
        text-decoration: none;
    background: rgb(255, 255, 255);
    /* box-shadow: 5px 5px 26px #ffffff1c, -5px -4px 7px #ffffff; */

    }
    input:hover{
        opacity: 0.6;
    }
    .submit-btn{
        background-color: rgb(18, 101, 255);
        color: white;
        font-size: x-large;
        margin-top: 80px;
    }
    .login-btn{
        background: transparent;
    }
    .login-btn2{
        background: white;
    }
    .login-btn:hover{
        opacity: 0.7;
    }
}
