:root {
    --main-blue-dark: #3a79d0;
    --main-blue-light: #4a9aff;
    --box-shadow-color: rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/images/image4.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-y: auto;
}


.forget-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
    width: 100vw;
}

.left-side {
    /* flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background: transparent; */
    width: 60%;
}

.right-side {
    position: relative;
}

.forget-box {
    background: white;
    flex: 0 0 400px;
    width: 400px;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--box-shadow-color);
    text-align: center;
    z-index: 2;
    margin: 20px;
}
.ui.blue.button {
    background-color: #2185d0;
}
@media (max-width: 800px) {
    body {

        align-items: flex-start;
        padding-top: 50px;
    }

    .forget-container {
        flex-direction: column;
        height: auto;
    }

    .left-side {
        display: none;
    }

    .forget-box {
        flex: 1;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        min-height: auto;
        margin-top: 55px;
    }
}