@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap");

body {
    min-height: 100vh;
    max-width: 100vw;
    background: #fff url("../img/stock-chart-bg.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Outfit", sans-serif;
}

.color-overlay {
    background: rgba(221, 255, 251, 0.8);
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

#main-container {
    min-height: 100vh;
}

.form-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 23px -3px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.form-container:hover {
    box-shadow: 0px 0px 23px -3px #0d6dfd6e;
    transition: 0.3s;
}

.app-title {
    font-weight: 600;
}

.captcha-container {
    position: relative;
}

.captcha-container .captcha-reload {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.2s;
}

.captcha-container .captcha-reload:hover {
    opacity: 1;
    cursor: pointer;
}

.opacity-1 {
    opacity: 1;
}
