﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Poppins;
}

.parent-wrapper {
    /*background-color: blue;*/
    height: 100vh;
    width: 100vw;
}

.login-wrapper {
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    height: 100%;
}

.login-background {
    height: 100%;
}

    .login-background img {
        height: 100%;
        display: block;
    }


.container {
    /*background-color: blue;*/
    height: 100%;
    width: 100%;
    padding: 10px;
    /*position: relative;*/
}

.forgot-password {
    /*background-color: white;*/
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info {
    /*background-color: red;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    font-size: large;
    color: #6b7280;
    margin-bottom: 20px;
}

.login-fillup {
    /*background-color: blue;*/
    padding: 10px;
}

    .login-fillup .form {
        /*box-shadow: none;*/
        width: 30rem;
        height: 50px;
    }

.title {
    font-weight: bold;
}

.customize-btn {
    height: 50px;
    width: 13rem;
    background-color: #40a040;
    align-content: center;
    color: white;
}

    .customize-btn:hover {
        background-color: #dcfce7;
        color: #327732;
    }

.back-button {
    /*background-color: red;*/
    display: flex;
    justify-content:space-between;
    width: 55%;
    margin-bottom: 10px;
}

.back-button .button {
    background-color: #40a040;
    /*width: 35px;*/
    border-radius: 50%;
    padding: 5px;
    display: block;
}

    .back-button .button:hover {
        background-color: #dcfce7;
        padding: 5px;
    }

.back-button svg {
    fill: white;
}

    .back-button svg:hover {
        fill: #40a040;
    }
