﻿
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #525e76, #4e6079, #49627b, #43657e, #3c6880, #336b81, #286e82, #167182);
    overflow: hidden;
}

#globe-container {
    position: absolute;
    width: 420vh;
    height: 330vh;
    bottom: -100vh;
    left: -120vh;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-white {
    background-color: #fff !important;
}

.btn-primary {
    background-color: #167182;
    border-color: #167182;
}

    .btn-primary:hover {
        background-color: #125e6a;
    }

.p-20 {
    padding: 10px 20px;
}

.login-box-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
    width: 110%;
}

.login-box {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    padding: 40px 30px;
    border-radius: 16px;
}


