:root {
    --backgroundtransition: 300ms;
    --border: #EFEFEF;
    --darkgrey: #707070;
    --grey: #E2E2E2;
    --heliosblue: #091826;
    --heliosdarkpurple: #004A89;
    --heliosdarkpurplehover: #0459A3;
    --heliospurple: #0E8AD4;
    --heliospurplehover: #3CB0F2;
    --lightgrey: #FAFAFA;
    --lightshadow: 0px 10px 20px rgba(0, 0, 0, 0.02);
    --mediumgrey: #ADADAD;
    --red: #F95657;
    --strongshadow: 0px 7px 7px rgba(0, 0, 0, 0.1);
    --white: #FFFFFF;
}
    
a:link {
    text-decoration: none;
}

body {
    background-color: #091826;
}

.login_container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

.login_card {
    position: relative;
    min-width: 475px;
    padding: 60px 100px;
    background-color: white;
    box-shadow: var(--strongshadow);
}

.login_form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 21px;
    margin: 30px 0;
}

.login_logo {
    position: absolute;
    top: -150px;
    left: 0px;
    z-index: 100;
    width: 100%;
    text-align: center;
}

.login_logo img {
    height: 70px;
}

.login_bottom {
    align-items: center;
    display: flex;
    gap: 0px;
    justify-content: space-between;
}

.login_bottom button {
    width: 200px;
}

.secret_button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: var(--heliosblue);
    height: 50px;
    width: 50px;
}