body {
    background: radial-gradient(var(--background), var(--background));
    overflow: hidden;
    animation: pulse 2s linear infinite alternate
}

/* Login styling */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.sign-in-up {
    overflow: hidden;
    position: relative;
    width: 70vw;
    height: 80vh;
    background-color: var(--background-inverse);
    border-radius: 25px;
    z-index: 5;
    box-shadow: 0 4px 20px 0.5rem rgba(0, 0, 0, 0.3);
}

.sign-in-up-vals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.sign-in-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70%;
    height: 100%;
    min-width: 238px;
    padding: 0, 10px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
}

.header{
    color: var(--primary); 
    text-align: center; 
    margin-top: 1.85%; 
    margin-bottom: 4%; 
    font-size: 26px; 
    font-weight: 600;
}
.login-btn {
    transition: all 0.3s;
    margin-top: 2%;
    margin-bottom: 2%;
    width: 120px;
    height: 120px;
    background-color: var(--background);
    border-radius: 60px;
    border: none;
    outline: none;
    color: var(--light);
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    padding-top: 40px;
}

.login-btn:hover{
    background-color:var(--background);
    color: var(--light);
    opacity: 0.95;
    text-decoration: none;
}
#overlay-image{
    align-items: right; 
    justify-content: right; 
    display: flex; 
    bottom: 3%; 
    position: absolute; 
    width: 100%; 
    height: 16%; 
    margin-left: 8%;
}