.identityPageWrapper {
    width: 100%;
    height: 100vh;
    background: #38495d;
}

.loginbox {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    color: white;
}

h1.identityTitle {
    text-align: center;
    text-transform: uppercase;
    color: white;
}

.form-control {
    border-radius: 30px;
    border: 2px solid white;
    background: transparent;
    color: white;
}

    .form-control:focus {
        box-shadow: none;
        border: 2px solid #ff8528;
        background: transparent;
        color: #ff8528;
    }


button.btn.save.log {
    background: white;
    color: #38495d;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    width: 100%;
    height: 4rem;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid white;
}


    button.btn.save.log:hover {
        transition: 0.3s ease-in-out;
        background: #ff8528;
        color: white;
        border: 3px solid #ff8528;
    }

.frrHints {
    color: white;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-size: 1rem;
}

    .frrHints:hover {
        color: #ff8528;
        transition: 0.1s ease-in-out;
        font-weight: 500;
    }



.loginSpot {
    border: 4px solid white;
    padding: 6rem 4rem;
    border-radius: 6rem;
    width: 25vw;
    background: #38495d85;
    z-index: 9999;
}

h1.topSlogan {
    color: white;
    position: absolute;
    font-size: 10rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 10px rgba(255,255,255,0.35);
    top: 3%;
    z-index: 9;
    left: 8%
}

h1.bottomSlogan {
    color: white;
    position: absolute;
    font-size: 10rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 10px rgba(255,255,255,0.35);
    top: 70%;
    z-index: 9;
    left: 8%
}

a#confirm-link {
    border: 2px solid white;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
}

    a#confirm-link:hover {
        background: white;
        color: #38495d;
    }

.buttondiv {
    display: flex;
    justify-content: center;
}

p.identityText {
    text-align: center;
}

.hintsGroup {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
}

.goToLogin {
    padding: 1rem 1.5rem;
    border: 2px solid white;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

    .goToLogin:hover {
        background: white;
        color: #38495d !important;
        cursor: pointer;
    }