
.home-link{
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-link img{
   width: 36px!important;
   height: 36px;
}

.home-link h2{
   margin:0!important;
   color: #30475E!important;
}



.login-form {
    display: flex;
    width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    border-radius: 36px;

}



.login-form form {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 600px;
    justify-content: space-between;

}

.signup-form {
    height: 800px !important;
}

.login-form .input-continer {
    width: 100%;
}

.form-input {
    width: calc(98% - 30px);
    height: 52px;
    padding: 0 15px;
    margin: 0 0 16px 0;
    border-radius: 12px;
    outline: none;
    border: none;
    background-color: var(--primary-background) !important;
}

.login-form h3 {
    font-family: var(--font);
    font-weight: bold;
    font-size: 20px;
    color: var(--primary-dark-text);
}

.login-form label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    color: var(--primary-dark-text);
    margin-top: 10px;
}

.login-form .submit-bottom {
    width: 100%;
    padding: 8px;
    height: 52px;
    margin-bottom: 10px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 22px;
    border-radius: 12px;
    color: var(--primary-header-and-footer-logo);
    background-color: var(--primary-cta);
    outline: none;
    border: none;
    margin-top: 30px;
    cursor: pointer;
}

.login-form .submit-bottom:hover {
    filter: brightness(1.1);
}

.error {
    position: absolute;
    display: flex;
    align-items: center;
    width: 320px;
    height: 42px;
    color: var(--primary-header-and-footer-logo);
    background-color: red;
    left: 0;
    bottom: 0;
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    padding: 0 20px;
}

.success-signup {
    padding: 15px 15px;
    background-color: green;
    color: var(--primary-header-and-footer-logo);
    font-family: var(--font);
    font-weight: 300;
    font-size: 16px;
    border-radius: 12px;
}

.success-signup a {
    color: var(--primary-cta);
    font-family: var(--font);
    font-weight: bold;
    font-size: 16px;
}

.moveto {
    color: var(--primary-gray-text);
    font-family: var(--font);
    font-weight: 300;
    font-size: 14px;
}

.moveto a {
    color: var(--primary-button-color);
    font-family: var(--font);
    font-weight: bold;
    font-size: 14px;
    margin: 0 5px;
}

.google-login-button {
    text-decoration: none;
    color: var(--primary-dark-text);
    background-color: var(--primary-header-and-footer-logo);
    width: 98%;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font);
    border-radius: 12px;
    border: 1px solid var(--primary-button-color);
    margin-top: 20px;
}

.google-login-button img {
    width: 24px;
    margin: 0 20px;
}

.or-part {
    width: 98%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.or-part .row {
    width: 30%;
    height: 1px;
    background-color: var(--primary-gray-text);
}

.or-part p {
    font-family: var(--font);
    color: var(--primary-gray-text);
    margin: 0 10px;
}

.login-image-container {

    width: 50%;
    height: 90vh;
    background-color: #33363a;
    border-radius: 12px;
    position: fixed;
    left: 20px;
}

.home-link {
    width: 120px;
}

.home-link img {
    width: 100%;
}

@media (max-width: 800px) {
    .login-form {
        width: 95%;
        align-items: center;
    }

    .login-image-container {
        position: inherit;
        left: unset;
        width: 95%;
    }
}

@media (max-width: 500px) {
    .login-image-container {
        display: none;
    }
}