﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Poppins;
    /*overflow-x: hidden;*/
}

.parent-wrapper {
    /*background-color: blue;*/
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.signin-wrapper {
    display: flex;
    flex: 1;
    min-height: 100vh;
    /*justify-content: space-between;*/
    /*align-items: center;*/
    /*height: 100%;*/
    /*width: 100%;*/
}

.signin-background {
    background-color: red;
    /*  flex: 1;
    display: flex;*/
    /*width: 100%;*/
}

    .signin-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.signin-page {
    /*background-color: yellow;*/
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 100%;*/
}

.container {
    /*background-color: blue;*/
    height: 100%;
    width: 100%;
    align-content: center;
    justify-content: center;
    padding: 10px;
    /*position: relative;*/
}

.menu-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

    .menu-logo .logo-title {
        font-size: 25px;
        color: #6b7280;
        font-weight: 900;
    }

.signin-fields {
    background-color: white;
    height: 100%;
    width: 100%;
    padding: 10px;
    /*margin-top: 10px;*/
    /*    display: flex;
    flex-direction: column;
    align-items: center;*/
    /*justify-content: center;*/
}

    .signin-fields .signin-fillup {
        /*background-color: red;*/
        width: 100%;
    }

.signin-fillup .field {
    display: flex;
    flex-wrap: wrap; /* for responsiveness */
    gap: 1rem;
    justify-content: space-between;
}

    .signin-fillup .field > div {
        flex: 1 1 45%; /* allow wrapping on smaller screens */
        min-width: 200px;
    }

.signin-fillup .form {
    width: 100%;
    box-shadow: none;
    padding: 0.6rem 1rem;
}

.iti {
    width: 100%;
}

    .iti input {
        width: 100%;
    }

.dropdownstyle {
    background-image: url(../Images/arrow-down-svgrepo-com.svg);
    background-size: 24px;
    background-position: 97%;
    background-repeat: no-repeat;
    /*background-color: transparent;*/
    padding: 10px;
    /*    width: 16rem;
    border: none;
    box-shadow: none;
    background-color: transparent;*/
    /*color: #40a040*/
}

.title {
    justify-items: center;
}

    .title h3 {
        font-size: 35px;
        font-weight: bold;
    }

    .title h5 {
        font-weight: 400;
    }

.signin-fillup {
    /*background-color: blue;*/
    width: 55%;
    padding: 10px;
}

    .signin-fillup .req-field {
        color: red;
        /*font-weight: bold;*/
    }

.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;
        }

.signin-fields .bottom-part {
    /*background-color: white;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.signin {
    width: 25%;
    display: flex;
    justify-content: center;
}

.policy {
    display: flex;
}

    .policy .policy-modal {
        color: #40a040;
    }

        .policy .policy-modal:hover {
            text-decoration: underline;
            cursor: pointer;
        }

    .policy .service-agreement {
        padding-left: 10px;
    }

        .policy .service-agreement h6 {
            padding-top: 2px;
        }

    .policy input.form-check-input {
        outline: 1px solid #40a040;
    }

        .policy input.form-check-input:focus {
            box-shadow: none;
        }
/*
        .policy input.form-check-input:checked {
            background-color: #40a040;
        }

        .policy input.form-check-input:active {
            background-color: none;
        }*/


.bottom-part .sign-in-link a {
    color: #40a040;
    text-decoration: none;
}

    .bottom-part .sign-in-link a:hover {
        text-decoration: underline;
        cursor: pointer;
    }

.signin .btn {
    height: 50px;
    width: 100%;
    background-color: #40a040;
    align-content: center;
    color: white;
}

    .signin .btn:hover {
        background-color: #dcfce7;
        color: #327732;
    }

.modal-termsCondition {
    padding: 10px 60px;
}

    .modal-termsCondition .content {
        /*background-color: red;*/
        padding: 10px;
    }

        .modal-termsCondition .content .title {
            display: flex;
            align-content: center;
            justify-content: center;
            font-size: 25px;
            font-weight: bold;
        }

        .modal-termsCondition .content h5 {
            color: #40a040;
            font-weight: bold;
        }

.real-file {
    display: none;
}

.custom-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    /*width: 320px;*/
    height: 180px;
    border: 3px dashed gray;
    background-color: transparent;
    color: gray;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}

    .custom-upload:hover {
        outline: 3px solid #40a040;
        outline-offset: -3px; /* pulls it onto the border */
    }

.file-name {
    margin-left: 10px;
    color: #6c757d;
    font-size: 14px;
}
