@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

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

ul, ol {
    list-style: none;
}

body{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    padding: 20px;
    background: #222;
    color: #fff;
}

.signupForm, .box{
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid #000;
    padding: 20px;
    position: relative;
}
form{
    margin: 20px 0;
}
.logo, .logo-solo a{
    margin: 0 auto;
    width: 150px;
    height: 38px;
    display: block;
    margin-bottom: 20px;
}
.hidden{
    display: none;
}

.button, button{
    background: linear-gradient(90deg,rgb(255,0,136) 0%,rgb(217,110,72) 53%,rgb(242,190,92) 100%);
    border-radius: 5px;
    padding: 10px 20px;
    display: inline-block;
    margin: 10px 0;
    border: none;
    color: #fff;
}
button:disabled{
    background: #555;
}

#divLogin .profilePic--small, #divLogin > p{
    display: none;
}

#divLogin .button{
    display: block;
    margin: 10px auto;
}
#divLogin input[type="text"],
#divLogin input[type="password"]{
    border: 1px solid #000;
    margin: 2px;
    padding: 10px 20px;
    border-radius: 5px;
}

.field{
    background: #555;
    margin: 2px;
    padding: 5px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    position: relative;
    border: 2px solid transparent;
}
.field label{
    width: 100px;
    font-size: 14px;
    flex: 1 0 100px;
    padding-left: 10px;
}
.field.error{
    border: 2px solid #ca0000;
    padding-bottom: 20px;
}
.field-error{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ca0000;
    font-size: 12px;
    padding: 0px 10px;
    text-align: center;
}
#signUpForm > .field-error, #verifyInputsWrap > .field-error{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px;
    margin: 10px 0;
}
.errorPanel{
    background: #ca0000;
    margin: 10px;
    padding: 5px 10px;
    border-radius: 5px;
}
.errorPanel li{
    list-style: none;
}
input{
    padding: 5px;
    background: transparent;
    border: none;
    color: #fff;
}
input::placeholder {
    color: #aaa;
    font-size: 14px;
}
h1{
    margin-bottom: 20px;
}
h2{
    margin: 20px 0;
    display: block;
}
.tac{
    text-align: center
}
.linkButton{
    text-decoration: underline;
    background: none;
}
.linkButton:disabled{
    background: none;
    opacity: 0.5;
}
#verifyInputs{
    display: flex;
    gap: 2px;
    justify-content: center
}
#verifyInputs input{
    background: #333;
    margin: 2px;
    font-size: 32px;
    width: 40px;
    border-radius: 5px;
    text-align: center;
}