    
    body {
    background-color: #f4f4f4 !important;
    }
    
    .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }
    
    .login-container {
    width: 50%;
    border-radius: 6px;
    padding: 20px;
    margin-top: calc(50vh - 90px);
    text-align: center;
    background-color: white;
    border: 1px solid #dddddd;
    }
    
    .login-container h2 {
    padding-bottom: 10px;
    color: black;
    }
    
    .login-container form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    }
    
    .login-container input {
    padding: 8px 12px;
    background-color: #f4f4f4;
    border: none;
    border-radius: 3px;
    width: calc(70% - 20px);
    margin-right: 20px;
    letter-spacing: 2px;
    font-size: 16px;
    }
    
    .login-container input:focus {
    outline: none;
    }
    
    .login-container button {
    width: 30%;
    padding: 8px 10px;
    border-radius: 3px;
    background-color: #4780B6;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    }
    
    .login-container button:hover {
    transform: translateY(-6px) translateX(-3px);
    box-shadow: 3px 6px 3px black;
    }
    
    .loginLink {
    color: #4780B6;
    }
    
    .loginLink:hover {
    color: black;
    text-decoration: underline;
    }
    
    #admin {
    display: none;
    flex-direction: column;
    }
    
    #normal {
    flex-direction: column;
    }
    
    .forgotPass {
    color: black;
    font-weight: normal;
    }
    
    .forgotPass a {
    color: #4780B6;
    text-decoration: none;
    }
    
    .forgotPass a:hover {
    text-decoration: underline;
    }
    
    .messagePortal, .messageAdmin {
    display: none;
    color: black;
    font-weight: bold;
    }
    
    .portalLoginDiv {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: calc(50% + 40px);
    }
    
    .adminLoginDiv {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    width: calc(50% + 40px);
    }
    
    @media screen and (max-width: 700px) {
    
    .login-container {
    width: calc(100% - 120px);
    padding: 20px 40px;
    }
    
    .portalLoginDiv {
    width: calc(100% - 40px);
    }
    
    .adminLoginDiv {
    width: calc(100% - 40px);
    }
    
    }
    
    @media screen and (max-width: 400px) {
    
    .login-container form {
    flex-direction: column;
    align-items: center;
    }
    
    .login-container input {
    width: 90%;
    margin: 0;
    }
    
    }
    
    