*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    background-color:dodgerblue;
}
img{
    height: 100%;
    width: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);

}
.compname{
    z-index: 1;
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    font-size: 54px;
    text-transform: uppercase;
    font-weight: bold;
    color: gold;
}
.slogan{
    z-index: 1;
    position: absolute;
    top: 70px;
    width: 100%;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}
form{
    width:300px;
    height:400px;
    background:rgba(0, 0, 0, 0.6);
    position: absolute;
    top: calc(50% - 200px);
    left:calc(50% - 150px);
    border-radius: 30px;
    color: gold;
    box-shadow: inset 2px 2px 12px hsla(0, 10%, 100%, 0.6), 0em 0.5em 0.6em rgba(0, 0, 0, 0.6);
 }
 h1{
    position: relative;
    color: gold;
    -webkit-text-size-adjust: 100%;
    align-content: center;
    background-color:transparent;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 26px;
 }
 h2{
    position: relative;
    color: wheat;
    -webkit-text-size-adjust: 100%;
    padding:10px;
    align-content: center;
    background-color:transparent;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: normal;
 }
 input{
    border:none;
    outline:none;
    padding:12px 20px;
    width:96%;
    border-radius: 5px;
    left:2%;
    position:relative;
    margin-bottom: 10px ;
    background:#ddd;
 }
 label{
    left: 2%;
    position: relative;
    font-weight: bold;
 }
 button{
    border: none;
    outline: none;
    height: 40px;
    width: 120px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 60px);
    border-radius: 50px;
    background: yellowgreen;
 }
 span{
    bottom: 75px;
    position:absolute;
    left: 2%;
    height: 30px;
    color: wheat;
    padding: 8px 12px;
    background-color:transparent;
 }