:root {
    --primary-color: rgb(24, 74, 161);
    --light-primary-color: #65aadd;
    --secondary-color: #f39800;
}
body {
    background-color: #fff;
    overflow-x: hidden;
    background-size: cover;
}
a:hover {
    color: var(--secondary-color);
}
.login {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 620px;
    margin: auto;
}
.login-bg {
    position: relative;
    background: url("../images/siix-bg.jpg");
    background-position: center;
    background-size: cover;
    height: 100vh;
}
.login-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background-image: linear-gradient(to top left, var(--secondary-color), var(--light-primary-color) 80%);
    opacity: 0.7;
}
.login-bg > * {
    position: relative;
    z-index: 1;
}
.login-content {
    background: url('../images/login-bg.jpg');
    background-repeat:no-repeat;
    background-size: cover;    
    /* background-position: top center; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form {
    width: 100%;
    margin: 0 10%;
    border-radius: 20px;
}
.login-form h1 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--primary-color);
}
.login-form p { 
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
}
.login-logo{
    width: 180px;
    margin: 0px auto 40px auto;
}
.login-btn {
    background: var(--primary-color);
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
}
.login-btn:hover {
    background: var(--secondary-color);
}

@media(max-width: 768px) {
    .login-bg {
        display: none;
    }
    .login-content {
        height: 100vh;
    }
}

