* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

.main-section {
    height: 100vh;
    background-color: #020041;
    position: relative;
    overflow-y: auto;
}

.main-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
}

.watermark {
    height: 10%;
    width: 70%;
    background-color: #00CDFF;
    position: absolute;
    left: 10px;
    margin: auto;
    top: 10px;
    opacity: 0.1;
    z-index: 2;
    border-radius: 10px;
}

.watermark-2 {
    height: 10%;
    width: 70%;
    background-color: #00CDFF;
    position: absolute;
    right: 10px;
    margin: auto;
    top: 12%;
    opacity: 0.1;
    z-index: 2;
    border-radius: 10px;
}

.watermark-3 {
    height: 10%;
    width: 70%;
    background-color: #00CDFF;
    position: absolute;
    left: 10px;
    margin: auto;
    top: 24%;
    opacity: 0.1;
    z-index: 2;
    border-radius: 10px;
}


.logo-wrapper {
    height: 220px;
    z-index: 22;
}

.logo-wrapper img {
    height: 100%;
    width: 100%;
}


.main-button {
    width: 100%;
    background: #0E288C;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s all ease-in-out;
    text-decoration: none;
}


.main-button:hover {
    background: #0b2074;
    background: transparent;
}

