
body {
    font-family: "Mulish", sans-serif;
    background: #DCEBF9;
    background: linear-gradient(135deg, #e3f2fd, #dcebf9, #c3dcf3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 30px 0 30px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Heebo', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.login-page {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.form-right i {
    font-size: 100px;
}

#defrenpage h1 {
    font-weight: 700;
    background-image: linear-gradient(to left, #3C589A, #5D91BE);
    text-shadow: 1px 1px 1px #3C589A;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

#innerrenewal {
    position: relative;
    min-height: 600px;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    #innerrenewal {
        min-height: auto;
        padding-bottom: 2rem;
    }
}

#leftsideft {
    background: linear-gradient(160deg, #142e5a 0%, #1e5a99 55%, #2e7d32 100%);
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    min-height: 560px;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    overflow: hidden;
    position: relative;
}

#leftsideft::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

#leftsideft::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.bold {
    font-weight: bold;
}

.claustxt p {
    margin-bottom: 0.5rem;
}

hr {
    margin: 0.5rem 0;
    opacity: 0.40;
}

.form-container {
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.btn-primary {
    font-weight: 600;
    border-radius: 0.5rem;
    background-color: #cc0000;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: #b30000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.input-group-text {
    background-color: #f0f0f0;
}

.gradient-heading {
    font-weight: 700;
    background-image: linear-gradient(to right, #142e5a, #1e5a99);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

#alertstat:not(:empty) {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

@media (max-width: 576px) {
    .form-container {
        padding-top: 1rem;
    }
    #innerrenewal h3 {
        margin-top: 1rem;
    }

    .btn {
        width: 100%;
        font-size: 1rem;
    }

    .input-group-text i {
        font-size: 1.1rem;
    }

    .form-control-sm {
        font-size: 1rem;
    }

    body {
        margin: 15px 0 15px;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

}