body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#login__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow-x: hidden;

    font-family: var(--standard-font);
}

#login__container, #update__pass__container {
    position: absolute;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    box-sizing: border-box;
    transform: translateY(20px);
    opacity: 0;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;

    background-color: var(--darker-background);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);

    animation: fadeInUp 1s ease forwards;
}

#title__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#repple__productivity__logo {
    width: 64px;
    box-sizing: border-box;
}

#repple__productivity__title {
    margin: 30px 0;

    font-size: 24px;
    font-weight: 200;
    color: var(--pastel-green);
}

#login__container form, #update__pass__container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    width: 300px;
    margin-top: 20px;
}

.section-1 {
    margin-bottom: 25px;
}

#login__container section, #update__pass__container section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#update__pass__container section:not(:last-child) {
    margin-bottom: 25px;
}

#login__container label, #update__pass__container label {
    position: absolute;
    margin-left: 10px;
    pointer-events: none;
    transform: translate(-14px, -34px) scale(0.9);

    font-size: 14px;
    font-weight: 500;
    color: var(--forest-green) !important;
    border-radius: 5px;
    transition: all 200ms ease;
}

#login__container input, #update__pass__container input {
    border: none;
    padding: 10px;
    box-sizing: border-box;

    border-radius: 5px;
    font-size: 14px;
    outline: none;
    background: var(--darkest-background);
    color: var(--pastel-green);
    font-family: var(--title-font);
}

.warning-hidden {
    margin: 0 !important;
}

#warning {
    margin: 10px 0;
    text-align: center; 
    color: var(--cherry);
    font-weight: 600;
    font-size: 14px;
}

#login__container span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

#login__container button, #update__pass__container button {
    padding: 8px;
    white-space: nowrap;

    font-size: 12px;
    font-family: var(--standard-font);
    transition: all 200ms ease;
}

#login__container button:hover, #update__pass__container button:hover {
    cursor: pointer;
}

#login__btn, #reset__btn, #submit__new__pass, #forgot__pass, #back__btn{
    border-radius: 5px;
    font-weight: 400;
    border: none;
    background-color: var(--darker-background);
    color: var(--pastel-green);
}

#login__btn:hover,
#reset__btn:hover,
#forgot__pass:hover,
#back__btn:hover,
#submit__new__pass:hover {
    background-color: var(--forest-green);
    color: var(--darker-background);
}


.container--hidden {
    display: none !important;
}

#username__temp {
    margin-bottom: 25px;
}

#email__temp {
    margin-bottom: 10px;
}

#email__temp, #username__temp {
    border: none;
    background-color: var(--darker-background);  
    outline: none;
    
    border-radius: 20px;
    font-size: 10px;
    color: var(--pastel-green);
}

#email__temp::placeholder, #username__temp::placeholder {
    font-size: 12px;
    color: rgb(150,150,150);
    font-family: var(--standard-font);
}

#email__err {
    margin: 10px 0 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
}

.email__err--hidden {
    display: none !important;
}

#update__pass__form section {
    position: relative;
}

#update__pass__container label {
    font-size: 14px !important;
}

#old__pass, #new__pass, #confirm__pass {
    
}

.visibility {
    position: absolute;
    right: 0;
    margin-right: 5px;
    width: 20px;
}

.visibility:hover {
    cursor: pointer;
}

.missing-input {
    box-shadow: 0px 0px 5px var(--cherry);
    transition: all 200ms ease;
}

#site__data {
    position: absolute;
    bottom: 0;
    align-items: center;
    padding-bottom: 5px;
    gap: 5px;
    display: flex;
}

#site__data > h2 {
    margin: 0;

    color: var(--darkest-background);
    font-size: 14px;
    font-weight: 500;
}

@keyframes fadeInUp {
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}