body{
    background: var(--2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.background_overlay{
    height: 100%;
    width: 100%;
    opacity: 0.2;
    position: absolute;
}

.container{
    background: var(--1);
    border-radius: 10px;
    height: 290px;
    width: 440px;
    position: relative;
    padding: 30px;
    display: grid;
    place-items: center;
    gap: 20px;
    transform: translate(0, 30px);
}

.logo_container{
    padding: 7px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: none;
    background: var(--1);
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translate(-50%, 0);
}

.logo_container > img{
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

form{
    display: grid;
    gap: 10px;
    width: 440px;
}

h1{
    text-align: center;
    color: var(--3);
    font-family: Josefin Sans;
    font-style: italic;
    font-weight: 500;
}

input{
    border: 1px solid var(--3);
    background: transparent;
    border-radius: 5px;
    height: 50px;
    padding: 0 15px;
    font-size: 16px;
    color: var(--3);
    font-family: jsMath;
    font-style: italic;
    outline: none;
}

input::placeholder{
    color: var(--3);
}

form > button{
    background: var(--3);
    color: var(--1);
    border: none;
    height: 50px;
    border-radius: 5px;
    font-family: Josefin Sans;
    font-style: italic;
    font-size: 20px;
    cursor: pointer;
    transition: opacity 0.2s;
}

form > button:hover{
    opacity: 0.8;
}

a{
    color: var(--3);
    font-family: Josefin Sans;
}

.password_container{
    position: relative;
    display: grid;
    grid-template-columns: auto 50px;
    height: 50px;
}

.password_container > input{
    border-radius: 5px 0 0 5px;
}

.password_container > button{
    height: 100%;
    background: var(--3);
    border: none;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.password_container > button:hover{
    opacity: 0.8;
}

.password_container > button > img{
    height: 25px;
    width: 25px;
}

.links{
    color: var(--3);
}