/* Login */
.login-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    width: 800px;
    max-width: 100%;
    top: 10px;
    background-color: #00132e;
    color: white;
}
.login-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}
.login-card .card-text a {
    color: white;
    text-decoration: none;
}
.login-card .text-muted {
    color: white;
}
.login-card .card-text a:hover {
    text-decoration: underline;
}
.login-card .right-panel {
    background: linear-gradient(135deg, #1b2d47 0%, #1b2d47 100%);
    background-size: cover;
    clip-path: polygon(0 0, 74% 0, 100% 100%, 23% 100%);
    position: relative;
    text-align: center;
}
.login-card .right-panel h2 {
    font-weight: 700;
    font-size: 2rem;
}
.login-card .right-panel p {
    font-size: 13px;
}
.login-card .login-audi {
    position: absolute;
    z-index: 3;
    left: 42%;
    top: -5%;
    width: 300px;
    height: 200px;
}
.login-card .btn-primary {
    background-color: #10466E;
    border: none;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
}
.login-card .btn-light {
    background-color: #00132e;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
}

/* Small devices (landscape phones, 576px and up)*/
@media only screen and (max-width: 768px) {
    .login-card .right-panel {
        background: linear-gradient(135deg, #00132e 0%, #00132e 100%);
        background-size: cover;
        clip-path: none;
        position: relative;
        text-align: center;
    }
    .login-card .login-audi, .login-card .right-panel {
        display: none;
    }
    .login-card {width: 100%;}
}