@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: "Norse Bold";
    src: url('fonts/Norse-Bold.otf');
    font-weight: normal;
    font-size: normal;
}

body {
    display: flex;
    margin: 0%;
    justify-content: stretch;
    align-items: center;
    font-family: "Roboto", sans-serif;
    background-color: rgb(255, 250, 250);
}


.image-section {
    position: relative;
    height: 100vh;
}

.overlay-logo{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Norse Bold";
    background-color: black;
    color: white;
    font-size: 65px;
    width: 100%;
    height: 100px;
    top: 180px;
    opacity: 0.5;
}

#logo{
    width: 100px;
    height: auto;
}

#image-credit{
    position: absolute;
    font-size: 12px;
    bottom: 10px;
    left: 55px;
    color: white;
}



#main-image {
    width: 450px;
    height: 100vh;
    margin: 0%;
}

#info{
    font-size: 20px;
    width: 555px;
    margin-bottom: 50px;
    margin-left: 30px;
}

.form-section{
    width: 100%;
}

.form-input{
    display: flex;
    gap: 50px;
    padding-left: 30px;
}

.input-label{
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgb(11, 11, 45);
}

#create-account-btn{
    padding: 10px 30px 10px 30px;
    border-radius: 8px;
    border-width: 0;
    background-color: rgb(166, 84, 84);
    color: white;
    font-weight:bold;
    margin-top: 20px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 10px -5px rgb(148, 130, 130);
}

#form-data{
    box-shadow: 0px 2px 5px -2px rgb(145, 115, 115);
    padding-bottom: 20px;
    padding-top: 5px;
    background-color: white;
}

#form-btns{
    margin-left: 30px;
}

#form-title{
    margin-left: 30px;
    color: rgb(11, 11, 45);
    font-size: 18px;
}

a { 
    color: inherit; 
    text-decoration: none;
} 

#form-btns a{
    color: rgb(166, 84, 84);
    text-decoration: none;   
}

input{
    border-radius: 4px;
    border: 2px solid #E5E7EB;
    padding: 5px;
 }

input:focus{
    border-color: rgb(70, 175, 245);
    box-shadow: 2px 2px 10px -5px gray;
    outline: none;
 }

 input[type="password"]:invalid{
    border-color:rgb(162, 49, 49);
 }

