:root{
 --color:black;
}
body{
     font-family: "Comfortaa", sans-serif;
  overflow: hidden;
    }
#screen{
       
       width: 100%;
       height: 100vh;
       display: flex;
       /* border: 8px solid black; */
}
    .circle{
    width: 1100px;
    height: 1100px;
    background-color:var(--color);
    border-radius: 50%;
    position: absolute;
    top:-50px;
    right:-500px;
}
#top{
    position: absolute;
    display: flex;
    justify-content: space-between;
    margin: 20px 30px;
    /* border:2px solid black; */
    width: 95%;
}
#top h1{
    font-size: 80px;
    color: black;
}

#mid{
    /* border: 8px solid #e01b1b; */
    display:flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 40px;
}

#input h2{
    font-size: 70px;
}
 #input span{
    color: var(--color);
 }
#input input{
  width: 90%;
  padding: 20px;
  border: none;
  box-shadow:5px 6px 10px rgb(70, 155, 247 ,0.5);
}
#login-btn{
    margin-top: 40px;
    padding:10px 30px;
    background-color: var(--color);
    color: white;
    font-size: 30px;
    font-weight: 300;
    border: none;
    box-shadow: 5px 7px 15px var(--color);
}

@media (max-width:600px) {
    body{
        background-color: rgb(255, 255, 255);
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
     .circle{
    width: 500px;
    height: 500px;
    background-color:rgb(0, 0, 0);
    border-radius: 50%;
    position: absolute;
    top:-300px;
    right:-180px;
}
#top{
    width: 100vw;
    /* border: 1px solid black; */
    position: absolute;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-left: 20px;
    right: 0;

    /* border:2px solid black; */
    width:55%;
    z-index: 1;
}
#top h1{
    font-size: 20px;
    color:rgb(247, 241, 238);
}
#top h1 img{
    width: 20px;
}
#click-btn{
    height:30px;
    width: 80px;
    /* box-shadow: 5px 6px 8px rgb(0,0,0,0.7); */
}
#input h2{
    font-size: 30px;
}
#mid{
    /* border: 8px solid #e01b1b; */
    display:flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
}
#input input{
  width: 70%;
  height:30px;
  padding: 20px;
  border: none;
  box-shadow:5px 6px 10px rgb(0,0,0 ,0.5);
}
#input{
    display: flex;
    flex-direction: column;
}
#login-btn{
    margin-top: 50px;
    padding:10px 30px;
    background-color: rgba(0, 0, 0);
    color: white;
    font-size: 10px;
    font-weight: 300;
    border: none;
    box-shadow: 3px 4px 10px rgb(0,0,0 ,0.5);
}
 #input span{
    color: black;

 }
}