
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    min-height: 100vh;
    background-image: url(background.jpg);
    background-size: cover;
    background-position: right;
}
.header-title{
    position: absolute;
    font-style: italic;
    color: rgba(65, 9, 9, 0.877);
    font-size: 20px;
    margin-left:10px;
}
.signup-container{
    box-sizing: border-box;
    width: 600px;
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
h2{
    font-size: 2rem;
    font-weight:700 ;
    text-transform: uppercase;
}
form{
    width: min(400px, 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
}
form input{
    box-sizing: border-box;
    background-color: rgb(243, 239, 233);
    border: none;
    padding: 1em;
    height:40px;
    display: block;
}
form label{
    width:100%; 
    font-weight: 400; 
}
form button{
    margin-top: 10px;
    padding: .60em 5em;
    border-radius: 1000px;
    background-color: rgba(180, 68, 3, 0.979);
    border:none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase; 
    color:white;
}

div > a{
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
span{
    color: red;
}
@media screen and (max-width:1100px){
    .signup-container{
        width: min(600px, 100%);
    }
}