.AnonymousLayout-page {
    position: relative;
    display: flex;
    flex-direction: column;
    height:100vh;
}

.AnonymousLayout-main {
    flex: 1;
    background-color: #f6f6f6;
    display:flex;
    justify-content: center;
    align-items: center;
}

.AnonymousLayout-centering-main{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vh;
    margin-bottom: 10vh;
}

.AnonymousLayout-component-container {
    border-style: solid;
    border-width: 2px;
    border-radius: 5px;
    border-color:transparent;

    width: 40rem;
    height: 20rem;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.AnonymousLayout-centering-component-container{
    display:flex; 
    justify-content:center; 
    align-items: center; 
    flex-direction:column; 
    width:100%; 
    height:100%;
}

.anon-home-button:hover{
    color: #9998988e;
    cursor: pointer;
}

.anon-form-row{
    align-items: center;
    display: flex;
    margin-bottom: 16px;
    width: 100%;
    font-size: 15px;
    line-height: 22px;
    margin: 15px 0 20px;
    justify-content: center;
}

.anon-form-field{
    display: inline-flex;
    position: relative;
}

.anon-input-wrapper{
    display: inline-flex;
    position: relative;
}

.anon-text-input{
    font-size: 18px;
    height: 42px;
    line-height: 26px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-shadow: 0 1px 0 0 rgba(0,0,0,.05);
    box-sizing: border-box;
    color: #222;
    font-size: 15px;
    height: 34px;
    line-height: 22px;
    padding: 0 10px;
    padding-left: 10px;
    z-index: 1;
}

.anon-text-input:active, .anon-text-input:focus{
    border: 2px solid #00a5b5;
    outline: none;
}

.anon-text-input-nub{
    width: 34px;
    align-items: center;
    background-color: #f4f4f4;
    border-radius: 1px 0 0 1px;
    display: flex;
    height: calc(100% - 2px);
    justify-content: center;
    pointer-events: none;
    position: absolute;
    top: 1px;
    right:1px;
    z-index: 0;
}

.anon-text-input-nub .span{
    display: flex;
    color:#999;
    line-height: 0;
}

.anon-submit-button{
    align-items: center;
    background-color: #00a5b5;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 0 0 rgba(0,0,0,.05),0 0 0 2px transparent;
    box-sizing: border-box;
    display: inline-flex;
    font-weight: 500;
    height: 34px;
    line-height: 1.125;
    padding: 0 16px;
    position: relative;
    user-select: none;
    vertical-align: bottom;
    color: #fff;
    text-decoration: none;
}

.anon-submit-button:hover{
    background-color: #00a6b5a8;
}

@media (min-width: 641px) {
    .MainLayout-page {
        flex-direction: row;
    }
}

/* @media (max-width: 50rem){
    .AnonymousLayout-component-container{
        width: 50vw;
        height:65vh;
    }
} */


