*{
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    -webkit-print-color-adjust:exact !important;
    print-color-adjust:exact !important;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
}

.bg{
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg img{
    height: 100%;
    width: 100%;
}

#logo{
    width: 40vw;
    max-width: 260px;
    margin: auto;
}

form{
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    background-color: #ffffffc5;
}

form label{
    display: flex;
    width: 60vw;
    max-width: 400px;
    flex-direction: column;
    margin: 6px auto;
    font-weight: bold;
}

form label input, form label select{
    padding: 8px 5px;
    border-color: #f0f0f0;
    border-radius: 4px;
}

form input[type="submit"]{
    margin: 6px auto;
    width: 100%;
    padding: 8px;
    border: none;
    background-color: #259CCF;
    font-weight: bold;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

form input[type="submit"]:hover{
    background-color: #1c7aa2;
}

form img.profile-img{
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 5px auto;
    background-color: #ffffff78;
}

pre{
    background-color: white;
    z-index: 10000;
    display: block;
    margin: 0 10px;
}

#back-icon{
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
}

#back-icon img{
    width: 50px;
}