LOGIN.CSS

.fs-7 {
    font-size: 0.875rem;
}

.fs-8 {
    font-size: 0.75rem;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

.full-height {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.login-box {
    z-index: 2;
    background-color: #ffffff;
}

.half-circle-outer,
.half-circle {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 0;
    animation: slide-up 1.2s ease-out forwards;
}

.half-circle-outer {
    bottom: -330px;
    width: 1700px;
    height: 700px;
    background-color: #ffffff;
    box-shadow: 0px -10px 40px rgba(0, 0, 0, 0.15);
}

.half-circle {
    bottom: -320px;
    width: 1600px;
    height: 650px;
    background-color: #0d6efd;
}

@keyframes slide-up {
    from {
        bottom: -1000px;
    }

    to {
        bottom: -330px;
    }
}