body {
    background-color: #f1f3f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100%;
}
a{
    text-decoration: none;
}
.auth-logo{
    width: 180px;
}
.form-label{
    font-weight: 600;
}

.form-control{
    box-shadow: none;
    background-color: #fff;
    border: 1px solid #c7c3c3;
    outline: none;
}
.form-control:focus{
    box-shadow: none;
    border: 1px solid #000;
}

.btn-2{
    border: 1px solid #990e35;
    margin-right: 10px;
    color: #7b189f;
    font-weight: 500;
}
.btn-2 i{
    font-size: 16px;
    position: relative;
    top: 1px;
}
.btn-2:hover{
    border: 1px solid #7b189f;
    text-decoration: underline;
}


.login-wrapper {
    max-width: 900px;
    margin: 5% auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.login-left {
    background: #000;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-left h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.login-left p {
    font-size: 15px;
}

.login-left img {
    max-width: 100%;
    margin-top: 30px;
}

.login-right {
    padding: 40px 30px;
}

.btn-primary {
    width: 100%;
}

.form-check-label {
    font-size: 0.9rem;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
    }
    .login-left, .login-right {
        width: 100%;
        padding: 20px;
    }
}

@media only screen and (max-width: 680px) {
    .login-wrapper{
        margin-top: 60px;
    }
}

