﻿.registerPage, .loginPage {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background: white;
    overflow: auto;
    min-width: 400px;
}

.registerPageSmall, .loginPageSmall {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    position: relative;
}

.registerPageSmall_content {
    width: 100%;
    max-width: 700px;
}

.registerPageSmall_content .registerPageInputSectionTitle {
    margin-left: 0em;
}

.registerPageSmall_logoContainer {
    display: grid;
    grid-template-columns: 3.5em 1fr;
    align-items: center;
    column-gap: .5em;
    box-sizing: border-box;
    color: var(--app-color-palette-primary);
}

.registerPageSmall_logoContainer h1 {
    margin: 0;
    padding: 0;
    font-size: 1.8em;
}

.registerPageSmall_logoContainer img {
    width: 3.5em;
    height: 3.5em;
}

.registerPageLarge_cancelButton {
    background: var( --app-color-palette-cancel);
    border: none;
    outline: none;
    position: absolute;
    right: 1em;
    top: 1em;
    padding: .5em .6em;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.registerPageLarge_cancelButton:hover {
    background: var( --app-color-palette-cancel-active);
}

.registerPageLarge_cancelButton:focus {
    outline: 3px solid var(--app-color-palette-primary-color);
}

.registerPageLarge_cancelButton img {
    width: 15px;
    height: 14px;
}

.registerPageLarge, .loginPageLarge {
    display: none;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.registerPageLarge_logoContainer {
    display: grid;
    grid-template-columns: 3.5em 1fr;
    color: white;
    align-items: center;
    column-gap: .5em;
    box-sizing: border-box;
    padding: 5% 10%;
}

.registerPageLarge_logoContainer h1 {
    margin: 0;
    padding: 0;
    font-size: 1.8em;
}

.registerPageLarge_logoContainer img {
    width: 3.5em;
    height: 3.5em;
}

.registerPageLarge_textContainer {
    color: white;

    margin: auto;
    padding: 0 4em;
}

.registerPageLarge_textContainer h1 {
    font-size: 2.5em;
    margin: 0;
}

.registerPageLarge_textContainer p {
    display: none;
    margin: 1em 0 0 0;
    font-weight: 300;
    max-width: 400px;
}

.registerPageLarge_imageContainer {
    display: flex;
    align-items:end;
    justify-content: center;
    overflow: hidden;
}
.registerPageLarge_imageContainer canvas {
    width: 500px;
    height: 500px;
}




.registerPageLarge_right {
    background-color: #007bffb0;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 10em 10em 1fr;
}

.registerPageLarge_left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.registerPageInputSection {
    width: 100%;
    box-sizing: border-box;
    padding: 2em 4em;

    display: grid;
    row-gap: 1em;
    max-width: 800px;
}

.registerPageInputGroup {
    display: grid;
    row-gap: .8em;
    margin-left: 0em;
    margin-right: 0em;
}

.registerPageTextGroup {
    margin-left: 0em;
    margin-right: 0em;
}



.registerPageInputContainer {
    box-sizing: border-box;
    border-radius: var(--app-sharp-border-radius);
    border: none;
}

.registerPageInputContainer:hover input,
.registerPageInputContainer:focus-within input {
    outline: 1px solid var(--app-color-palette-primary-color);
    /*transform: translate(-10px, -12px);
    transition-duration: .3s;
    width: 90%;*/
}

.registerPageInputContainer:hover,
.registerPageInputContainer:focus-within {
    outline: 1px solid var(--app-color-palette-primary-color);

}

.registerPageInputGroupTitle {
    font-weight: 500;
}

.registerPageInputGroup input {
    border-radius: var(--app-sharp-border-radius);
    border: none;
    padding: .5em 1em;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(232, 240, 254);
    font-size: 1.1em;
}

.registerPageInputSectionTitle {
    color: var(--app-color-palette-primary);
    font-weight: 500;
    font-size: 1.5em;

}

.registerPageButton, .loginPageButton {
    margin-left: 0em;
    margin-right: 0em;
    box-sizing: border-box;
    padding: .75em 1em;
    border-radius: 20em;
    outline: none;
    border: none;
    background: var(--app-color-palette-primary-color);
    color: white;
    font-size: 1.1em;
    cursor: pointer;
}

.registerPageButton:hover, .loginPageButton:hover {
    background-color: var(--app-color-palette-button-primary-color-active);
}

.registerPageButton:focus, .loginPageButton:focus {
    outline: 2px solid var(--app-color-palette-focus-element-outline);

}


.agreement {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 1em;
  margin: 0 0em 2em 0em;
  align-items: center;
}

.agreement input {
  width: 24px;
  height: 24px;
}

.agreement label {
  font-size: 1em;
  color: rgb(63, 63, 63);
}


.registerAdditionTools {
    text-align: center;
    display: grid;
    row-gap: 1em;
}

.registerAccountManagementTools {
    margin: 0em 0 0 0;

    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1em;
}

.registerAccountManagementTools a {
    font-size: .85em;
    text-decoration: none;
    font-weight: 400;
    color: var(--app-color-palette-primary-color) !important;
}

.registerAdditionTools a {
    cursor: pointer;
    text-decoration: none;
    color: var(--app-color-palette-primary);
}


#RegisterConfirmationPage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 900px !important;
    padding: 120px 0 0 0;
    box-sizing: border-box;
    color: white;
    min-width: 350px;
    height: 100vh
}

.messageBox {

    background-color: var(--app-color-palette-primary-color);
    padding: 0 2em;
    box-sizing: border-box;
    width: 100%;
    max-width: 800px;
    border-radius: var(--app-border-radius);

    display: grid;
    grid-template-rows: 8em 1fr 5em;
    margin-left: 2em;
    margin-right: 2em;
}

.messageBox button {
    margin: auto;
    height: 80px;
    width: 220px;
    border-radius: 20em;
    transform: translateY(50%);
    font-size: 1.3em;
    background: white;
    border: 3px solid var(--app-color-palette-primary-color);
    cursor: pointer;
}

.messageBox button:focus {
    outline: 3px solid var(--app-color-palette-primary);
}

.messageBox a {
    margin: auto;
    height: 80px;
    width: 220px;
    border-radius: 20em;
    transform: translateY(50%);
    font-size: 1.3em;
    background: white;
    border: 3px solid var(--app-color-palette-primary-color);
    text-decoration: none;
    cursor: pointer;
    color: var(--app-color-palette-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.messageBox a:focus {
    outline: 3px solid var(--app-color-palette-primary);
}

.messageBox canvas {
    width: 15em;
    height: 15em;
    transform: translateY(-50%);
    margin: auto;
}

.messageBox .textContent {
    text-align: center;
}

.messageBox h1 {
    font-size: 2em;
}

.messageBox h3 {
    font-weight: 400;
    font-size: 1.2em;
}

.messageBox p {
    font-weight: 400;
}


.otp-section {
    margin: 0 0 0 0em;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1em;
}

.otp-inputs {
    display: grid;
    grid-template-columns: 3rem 3rem 3rem;
    gap: .75rem;
}

.otp-inputs input {

}
.otp-box {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 3rem;
    border: 1px solid var(--bs-border-color, #ced4da);
    border-radius: .5rem;
}
.otp-box:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}


@media screen and (min-width: 600px) {
    .otp-section {
        margin: 0 0 0 3em;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 1em;
    }

    .messageBox {
        padding: 0 4em;
    }

    .messageBox h1 {
        font-size: 2.5em;
    }

    .messageBox h3 {
        font-weight: 400;
        font-size: 1.8em;
    }

    .messageBox canvas {
        width: 20em;
        height: 20em;
        transform: translateY(-50%);
        margin: auto;
    }

    .registerPageSmall_content .registerPageInputSectionTitle {
        margin-left: 2em;
    }

    .registerPageInputGroup {
        margin-left: 3em;
        margin-right: 3em;
    }

    .registerPageTextGroup {
        margin-left: 3em;
        margin-right: 3em;
        color: var(--app-color-palette-secondary);
    }

    .agreement {
        margin: 0 3em 2em 3em;
    }

    .registerPageButton, .loginPageButton {
        margin-left: 3em;
        margin-right: 3em;
    }

    .registerAccountManagementTools {
        margin: 0em 3em 0 3em;
    }
    .otp-inputs {
        display: grid;
        grid-template-columns: 3rem 3rem 3rem 3rem 3rem 3rem;
        gap: .75rem;
    }
}


@media screen and (min-width: 1000px) {
    .registerPageSmall, .loginPageSmall {
        display: none;
    }
    .registerPageLarge, .loginPageLarge {
        display: grid;
        grid-template-columns: 40% 60%;
    }

    .registerPageLarge_cancelButton {
        padding: 1.4em 1.5em;
        right: 2em;
        top: 2em;
    }
    .otp-section {
        margin: 0 0 0 3em;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 1em;
    }

    .otp-inputs {
        display: grid;
        grid-template-columns: 3rem 3rem 3rem 3rem 3rem 3rem;
        gap: .75rem;
    }
 
}


@media screen and (min-width: 1400px) {
    .registerPageLarge_textContainer p {
        display: block;
    }
}