body {
    margin: 0;
}
.container-fluid {
    padding:0;
}
section {
    min-height: 100vh;
    background-image: linear-gradient(45deg, #b2231b, #ffffff);
/*    background: linear-gradient(to bottom, #ffffff, #b2231b);*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    max-width: 900px;
    width: 100%;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.left-side {
    background: linear-gradient(135deg, #d7261c 0%, #191816 100%);
/*    background: linear-gradient(to bottom right, #0288d1, #3f51b5);*/
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 515px;
}

    .left-side h1 {
        color:white;
        font-weight: 700;
        font-size: 32px;
    }

    .left-side p {
        margin-top: 10px;
    }

    .left-side .btn-outline-light {
        color: white;
        margin-top: 30px;
        border-radius: 25px;
        padding: 10px 30px;
        width: fit-content;
        align-self: center;
    }

.right-side {
    padding: 50px 40px;
}
    .right-side h3 {
        color: #801f19;
        text-transform: uppercase;
        font-family: auto;
        font-weight: 700;
    }
.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-control {
    border-radius: 30px;
    padding: 14px 20px;
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    font-size: 16px;
}
.form-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c1e18;
    font-weight: 700;
    margin-bottom: 8px;
}
.btn-gradient {
    background: linear-gradient(135deg, #d7261c 0%, #9c221a 100%);
/*    background: linear-gradient(to right, #0288d1, #3f51b5);*/
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px;
    font-weight: bold;
    width: 100%;
}

    .btn-gradient:hover {
        opacity: 0.95;
    }

.forgot-link {
    font-size: 14px;
    text-align: end;
    display: block;
    margin-top: 10px;
    color: #888;
}

    .forgot-link:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .left-side {
        padding: 30px 20px;
        min-height: fit-content;
        min-width: 100%;
    }

        .left-side h1 {
            font-size: 24px;
        }

    .right-side {
        padding: 30px 20px;
        min-height: fit-content;
        min-width: 100%;
    }

    .forgot-link {
        text-align: center;
    }
}
