﻿.register, .login, .forgot-pw {
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

    .register .form-control {
        background-color: white;
        color: black;
        border-radius: 0;
    }

.register input {
    -ms-grid-column: span 2;
    grid-column-start: span 2;
    -ms-grid-column-span: 2;
    grid-column-end: span 2;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    height: 100%;
    min-height: 3em;
    margin-bottom: 1em;
    padding: 0.5em 1em;
    border: none;
    background-color: white;
    -webkit-transition: border-color 200ms ease, background-color 200ms ease;
    transition: border-color 200ms ease, background-color 200ms ease;
    font-size: 0.9em;
    line-height: 1;
    color: black;
}

.register input[type="button"] {
    width: 100%;
}

    .register input[type="text"],
    .register input[type="email"],
    .register input[type="password"] {
        border: 2px solid black !important;
    }

    .register input:focus {
        background-color: white;
        color: black;
    }

    .register input:-webkit-autofill,
    .register input:-webkit-autofill:hover,
    .register input:-webkit-autofill:focus,
    .register input:-webkit-autofill:active {
        -webkit-background-clip: text;
        -webkit-text-fill-color: black;
        transition: background-color 5000s ease-in-out 0s;
        box-shadow: inset 0 0 20px 20px white;
    }

@media only screen and (min-height: 1024px) {
    .register, .login, .forgot-pw {
        padding-top: 9em;
        padding-bottom: 9em;
    }
}

@media only screen and (max-width: 720px){
    .user-form{
        max-height: 55em !important;
    }
}

.user-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 43em;
    max-height: 45em;
    margin-right: auto;
    margin-bottom: 1em;
    margin-left: auto;
    padding: 6em 3em;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    text-align: center;
}

    .user-form .form-header {
        width: 100%;
        margin-top: 2rem;
        text-align: center;
    }

    .user-form p {
        color: black;
        margin: 2em 0;
        font-size: 0.9em;
    }

    .user-form .form-header img {
        display: inline-block;
        max-width: 100%;
    }

    .user-form .form-title {
        text-align: center;
        font-size: 2.5em;
        margin-top: 20px;
        margin-bottom: 10px;
        line-height: 36px;
        font-weight: 600;
        color: black;
        font-family: 'founders-grotesk-x-condensed-bold';
        text-transform: uppercase;
    }

    .user-form input[type="submit"] {
        font-family: "founders-grotesk-x-condensed-bold";
        font-size: 2em;
        padding: 0;
    }

@media only screen and (max-width: 600px) {
    .user-form {
        margin-left: 12px !important;
        width: calc(100% - 24px) !important;
    }
}

.form-header-logo {
    margin-bottom: 2em;
}

.form-content {
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
}

.form-block {
    width: 100%;
    margin-bottom: 0px;
}

.user-form .form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form-grid {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
}

.reg-form-grid {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-row-gap: 16px;
    grid-column-gap: 16px;
}

.form-checkbox-label {
    margin-bottom: 0px;
    color: #6d6d6d;
    font-size: 0.9em;
    font-weight: 400;
    text-align: left;
}

    .form-checkbox-label a {
        color: white;
    }

.right-content {
    width: 100%;
}

#dctr-link {
    position: fixed;
    display: none;
    top: 4px;
    left: 4px;
    width: 172px;
    color: white;
    text-decoration: none;
}

    #dctr-link img {
        width: 128px;
        display: block;
    }

@media only screen and (min-width: 1024px) {
    #dctr-link {
        display: block;
    }
}

.lnk-contact {
    display: inline-block;
    color: black;
    text-decoration: none;
}

.lnk-contact span {
    font-size: 17px;
}

@media only screen and (min-width: 720px) {
    .lnk-contact:first-of-type {
        margin-right: 1rem;
    }
}

@media only screen and (max-width: 720px) {
    .lnk-contact {
        display: block;
    }
}

#mdl-domain-change-overlay {
    position: absolute;
    z-index: 99998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.5);
}

#mdl-domain-change {
    z-index: 99999;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #6527fc !important;
    color: white;
    width: 430px;
    padding: 2em;
    transform: translate(-50%, -50%);
}

    #mdl-domain-change h1 {
        font-size: 56px;
        font-family: "founders-grotesk-x-condensed-bold", sans-serif;
    }

    #mdl-domain-change button.close {
        background: none;
        color: white;
        border: none;
        font-size: 2em;
        margin-left: auto;
    }
    
    #mdl-domain-change button.go {
        background-color: white;
        border: 0;
        border-radius: 25px;
        padding: .5rem 2em;
    }