body{
    margin: 0px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

#main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: clamp(600px, 100vh, 800px); 
    width: 100%;
}

a{
    text-decoration: none;
    color: black;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#login-container{
    padding: 20px;
    padding-left: 200px;
    padding-right: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}


input{
    width: 200%;
    height: 40px;
    padding: 3px;
    font-size: 15px;
    border: 1px solid #e8e8e8;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    border-radius: 15px;
    outline-color: #555;
    outline-offset: 4px;
}

#continueWithEmail, .regularbutton, #customGoogleBtn, .regularbutton2{
    width: 200%;
    height: 45px;
    padding: 3px;
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    background-color: black;
    color: white;
    border: none;
    outline:none;
    border-radius: 15px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.regularbutton:hover, #continueWithEmail:hover {
  box-shadow:0 0 0 2px #f9f9f9,  0 0 0 4px black;  
}


#customGoogleBtn:hover{
    box-shadow:0 0 0 2px #f9f9f9,  0 0 0 4px #e8e8e8; 
}

p{
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

hr{
    width: 100%;
    height: 1px;
    background-color: rgb(189, 189, 189);
    border: none;
}

@media screen and (max-width: 660px) {
    #login-container{
        padding: 20px;
        padding-left: 10px;
        padding-right: 10px;
        width: 90vw;
    }
    
}

@media screen and (max-width: 500px) {
    #login-container{
        padding: 20px;
        padding-left: 10px;
        padding-right: 10px;
        width: 90vw;
    }

    input, button{
        width: 150%;
    }
}