﻿
#partialContainer {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.user-container {
    display: flex;
    outline: 0 none;
    border-radius: 15px;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    padding: 10px 50px 20px 50px;
    background-color: rgb(245, 245, 245);
    border: 2px solid rgba(230, 230, 230, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(230, 230, 230, 0.6);
}

.user-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-body {
    width: 100%;
    height: 100%;
    display: flex;
    margin-top: 15px;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.user-body-row {
    width: 100%;
    height: 100%;
    display: flex;
    margin-top: 15px;
    align-items: start;
    justify-content: start;
}

.user-actions {
    display: flex;
    margin-top: 30px;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

.user-actions input {
    width: 350px;
}

.divider-line-container {
    width: 350px;
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 100%;
    border-top: 1px solid rgb(200, 200, 200);
}

.divider-text {
    margin-left: 10px;
    margin-right: 10px;
}

.body-column:first-of-type {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgb(200, 200, 200);
}

.user-body-inner-container {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.user-body-inner-container:not(:first-of-type) {
    margin-top: 20px;
}

.user-body-inner-container input {
    width: 350px;
    margin-left: auto;
}

.user-body-inner-container-header {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

#emailVerificationContainer {
    width: 400px;
    display: none;
    padding: 10px;
    outline: 0 none;
    overflow: hidden;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(245, 245, 245);
    border: 2px solid rgba(230, 230, 230, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(230, 230, 230, 0.6);
}

#emailVerificationHeader {
    display: flex;
    align-items: center;
    justify-content: center;
}

#contentContainer {
    position: relative;
}

#emailVerificationBody {
    width: 100%;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#emailVerificationSpinner {
    width: 100%;
    height: 100%;
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    align-items: center;
    justify-content: center;
}

#emailVerificationCheckmark {
    display: none;
}

#emailVerificationActions {
    width: 100%;
    display: none;
    margin-top: auto;
    align-items: start;
    justify-content: start;
}

#emailVerifiedLinkContainer {
    width: 100%;
    display: flex;
    font-size: 0.9em;
    align-items: start;
    justify-content: start;
}

#proceedToLoginLink {
    margin-left: 4px;
    color: deepskyblue;
    text-decoration: underline;
}

#proceedToLoginLink:hover {
    cursor: pointer;
}

#resetPasswordContainer {
    display: none;
}