.login-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    color: white;
}
.login-container .background {
    position: relative;
    bottom: 0;
    right: 0;
    background: url("../images/yellow-QWogm4R.png");
    height: 100vh;
    width: 45%;
    background-size: cover;
}
@media (max-width: 600px) {
    .login-container .background  {
        width: 0;
    }
    .login-container .form-container {
        width: 100%;
        padding: 0 2rem;
        align-items: normal;
    }
}
.login-container .form-container {
    position: relative;
    display: flex;
    width: 55%;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.form-container .logo {
    width: 125px;
    object-fit: cover;
    display: flex;
    margin: 15px auto;
}
.login-container .form-container form {
    width: 100%;
    max-width: 490px;
    padding: 2rem;
    background: #ffff;
    color: black;
    border-radius: 6px;
    box-shadow: 0px 1px 20px rgb(0, 0, 0, 0.8);
}
.net-graph {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;    
}

.btn-custom {
    background-color: #fdc500;
    color: white;
    display: flex;
    width: auto;
    margin: 1rem auto;
    transition: all 500ms ease-in-out;
}
.btn-custom:hover {
    background-color: #daa100;
    color: white;
}