@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'Lato' , sans-serif;

}

.outer-box{
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top left,red,rgb(215, 192, 192));
}

.inner-box{
    width: 400px;
    margin:0 auto;
    position: relative;
    top:50%;
    transform : translateY(-50%);
    padding: 20px 40px;
    background-color: #cb787899;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(244, 36, 36, 0.885);
    z-index: 2;
}

.signup-header h1{
    text-align: center;
    font-size: 2.5rem;
    color: #212121;
}

.signup-header p{
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

.signup-body label{
    display: block;
    font-weight: bold;
}

.signup-body{
    margin :20px 0; 
}

.signup-body p{
    margin :10px 0; 
}

.signup-body p input{
    width: 100%;
    padding :10px;
    border : 2px solid #cccc;
    border-radius: 4px;
    margin-top: 4px;
}

.signup-body p input[type="submit"]:hover{
    border: none;
    background-color: rgba(226, 42, 42, 0.885);
    color: white;
    cursor:pointer;
    
}

.signup-body p input[type="submit"]{
    background-color: rgba(244, 114, 114, 0.885);   
}

.signup-footer p{
    text-align:center;
    color: #555;
}

.signup-footer p a{
    color: blue;
}

.circlec1{
    width:200px;
    height:200px;
    border-radius: 100px;
    margin-top: 50px;
    margin-left: 20px;
    background: linear-gradient(to right,white,rgb(241, 96, 96));
}

.circlec2{
    position: absolute;
    left:55%;
    width:200px;
    height:200px;
    border-radius: 100px;
    top: 20px;
    background: linear-gradient(to right,white,rgb(241, 96, 96));
}

