body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.vh-100 {
    height: 100vh;
    margin: 0;
    /* display: flex; */
    /* align-items: center;
    justify-content: center; */
}
.custom-gutter {
    --bs-gutter-x: 0rem;
}
.left-column {
    background-color: #0aab77;
    color: white;
    padding: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.left-column::before,
.left-column::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: #149b6f;
    z-index: 1;
}

.left-column::before {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.left-column::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.circle-center {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #149b6f;
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.right-column {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    max-width: 400px;
    width: 100%;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-primary:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

.form-text {
    text-align: center;
}