﻿@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-page {
    height: 100%;
    flex: 1;
}

.container {
    /*background-color: white;*/
    height: 100%;
    width: 100%;
    align-content: center;
    padding: 10px;
    position: relative;
}

.menu-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

    /*.menu-logo img {*/
    /*max-width: 50%;*/
    /*width: 100%;*/
    /*height: 80%;*/
    /*}*/

    .menu-logo .logo-title {
        font-size: 25px;
        color: #6b7280;
        font-weight: 900;
    }

.login-background {
    height: 100%;
}

    .login-background img {
        height: 100%;
        display: block;
    }

.login-fields {
    background-color: white;
    height: 100%;
    padding: 20px;
    /*margin-top: 10px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
}

.login-fillup .form {
    box-shadow: none;
}

.title {
    justify-items: center;
}

    .title h3 {
        font-size: 35px;
        font-weight: bold;
    }

    .title h5 {
        font-weight: 400;
    }

.login-fillup {
    /*background-color: blue;*/
    width: 55%;
    padding: 10px;
}

.password-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.togglePassword {
    position: absolute;
    width: 25px;
    margin-right: 12px;
    cursor: pointer;
}

.pass-settings {
    display: flex;
    justify-content: space-between;
}

    .pass-settings a {
        color: red;
        text-decoration: none;
    }

        .pass-settings a:hover {
            text-decoration: underline;
        }

/*.custom-checkbox .chk:checked {
    accent-color: #40a040;
}*/


.login {
    width: 25%;
    display: flex;
    justify-content: center;
}

.custom-btn-login {
    height: 50px;
    width: 100%;
    background-color: #40a040;
    align-content: center;
    color: white;
}

    .custom-btn-login:hover {
        background-color: #dcfce7;
        color: #327732;
    }

.sign-up h6 {
    font-weight: 400;
}

.sign-up a {
    color: #40a040;
    text-decoration: none;
}

    .sign-up a:hover {
        text-decoration: underline;
    }

.policy {
    width: 50%;
    /*background-color: blue;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*text-transform:uppercase;*/
    font-weight: 500;
    color: #40a040;
}

    .policy a {
        display: flex;
        text-align: center;
        color: #40a040;
        text-decoration: none;
    }

        .policy a:hover {
            text-decoration: underline;
        }

.toggle-admin {
    /*background-color: blue;*/
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
}

.custom-switch .form-check-label {
    font-size: 15px;
    font-weight: 600;
}

.custom-switch .form-check-input {
    width: 34px;
    height: 20px;
    cursor: pointer;
    /*background-color: #b9b9b9*/
}
    /*    .custom-switch .form-check-input:after {
        background-color: none !important;
        border-color: none !important;
    }*/

    .custom-switch .form-check-input:checked {
        background-color: #40a040;
        border-color: #40a040;
    }

    .custom-switch .form-check-input:focus {
        box-shadow: none;
    }
