* {
    margin: 0;
    padding: 0;
    font-family: Poppins;
}

body{
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: url("../resources/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(8px) brightness(0.7);
  z-index: -1;
}

.main{
    display: flex;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.window{
    width: 400px;
    height: 500px;
    margin: auto;
    padding: 20px;
    border-radius: 25px;
    vertical-align: middle;
    background-color: #1a181b;
    color: #ffffff;
    box-shadow: 0vh 2vh 10vh -1.5vh #000000;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.window h2{
    margin: auto;
    width: 100%;
    text-align: center;
}

.window h4{
    font-weight: 300;
    text-align: center;
    width: 100%;
}

.window input[type="text"], input[type="password"], textarea{
    padding: 5px;
    border-radius: 25px;
    border-style: none;
    outline-style: none;
    width: 85%;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    background-color: #333035;
    color: #ffffff;
}

.window textarea{
    resize: none;
    border-radius: 10px;
    height: 120px;
}

.window input:hover[type="text"], input:hover[type="password"], input:hover[type="number"], textarea:hover{
    color: #ffffff;
    background-color: #4a474b;
}

.window input:focus[type="text"], input:focus[type="password"], input:focus[type="number"], textarea:focus{
    color: #000000;
    background-color: #ffffff;
}

.window h5{
    font-weight: 400;
    margin: 15px;
    color:#8a888b;
    text-align: justify;
}
.step4 h5{
    margin-bottom: 0;
}

.window img{
    width: 50px;
    height: 50px;
    margin: auto;
    margin-top: 50%;
    display: block;
}

.button-container {
    display: none;
    justify-content: space-between;
    margin-top: auto;
}

.button-container button {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    background-color: #333035;
    color: #fff;
    cursor: pointer;
    margin: 10px;
    width: 120px;
}

.button-container button:hover {
    background-color: #ffffff;
    color: #000000;
}

.button-container button:active {
    background-color: #cdcdcd;
    color: #000000;
}

.birthday-selector{
    display: flex;
    flex-direction: row;
    margin: auto;
    width: 90%;
}

.birthday-selector input{
    padding: 5px;
    border-radius: 25px;
    border-style: none;
    outline-style: none;
    width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 10px;
    margin-left: 1%;
    margin-right: 1%;
    background-color: #333035;
    color: #ffffff;
}

.birthday-selector input:focus{
    background-color: #ffffff;
    color: #000000;
}

.step4 a{
    text-align: center;
    margin: auto;
    margin-bottom: 8px;
    margin-top: 0;
    display: block;
    color:#8a888b;
}

.migrationwindow h5{
    color: #fff;
    opacity: 100%;
    margin-bottom: 0;
}

.migrationwindow h6{
    margin: 15px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
    opacity: 50%;
    font-weight: 400;
}