body{
    font-family: "Comfortaa", serif;
}

.parent{
    position: relative;
    border: 2px solid black;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.solid-circle{
    height: 750px;
    width: 750px;
    background: #476EF7;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -300px;
    z-index: 1;
}

.header-home{
    display: flex;
    justify-content: space-between;
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 10px;
    padding: 0 25px;
}

#click-button{
    color: #476EF7;
    background-color: white;
    font-size: large;
    font-weight: bold;
    box-shadow: 4px 4px 2px rgba(0,0,0,0.50);
}

#name{
    color:#476EF7 ;
    font-size: 80px;
}

.form-floating{
    box-shadow: 3px 3px 4px rgba(0,0,0,0.25);
    border-radius: 8px;
    color: gray;
}

#login-button{
    background-color:#476EF7 ;
    color: white;
    padding: 5px 15px;
}

.main-content{
    margin-left: 40px;
}

@media only screen and (max-width:768px){
    .solid-circle{
        background-color: rgb(209, 81, 209);
        height: 310px;
        width: 320px;
        top: -140px;
        right: -140px;
    }
    #name{
        color: rgb(209, 81, 209);
    }
    #login-button{
        background-color: rgb(209, 81, 209);
    }
    #click-button{
        color: rgb(209, 81, 209);
        height: 60px;
    }
}