.wrapper {
    position: absolute;
    top: 0;
    background: black;
    width: 100vw;
    height: 100vh;
}

.holder {
    display: flex;
    flex-direction: column;
    border-radius: .5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: white;
}

.logo-height {
    height: 52px;
    margin: 0 auto;
}

.input-wrapper
{
    padding: 0;
    margin-bottom: 12px;
}

.input-label-wrapper{
    display: flex;
    flex-direction: column;
    position: relative;
    color: rgb(101, 103, 110);
}

.input-label-wrapper:focus-within {
    color: rgb(99, 93, 255) !important;
}
 

.input-label {
    padding: 0 .25rem;
    background: white;
    position: absolute;
    margin-left: .5rem;
    top:-.7rem;
}

.input-text {
    outline: none;
    padding: .75rem;
    border-radius: .25rem;
    border-width: 1px;
    border-color: rgb(101, 103, 110) !important;
    border-style: solid;
    width: 100%;
    margin: 0;
}
    
.input-text:focus,
.input-text:focus-visible {
    outline: none;
    border-color: rgb(99, 93, 255) !important;
}