﻿.addUser {
    background-color: #283E63;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .addUser .pageTitle {
        padding: 8px 35px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 48px;
    }

        .addUser .pageTitle h2 {
            margin: 0px;
            color: rgba(255, 255, 255, 1);
            font-weight: 500;
            font-size: 11px;
        }

/* form */

.addUserForm {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px 20px 8px;
    flex-wrap: wrap;
}

    .addUserForm .FormGrp {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
        margin: 0px 12px 16px;
        /* flex-grow: 1; */
        width: 28%;
    }

        .addUserForm .FormGrp label {
            color: #8AA1AF;
            font-size: 8px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .addUserForm .FormGrp input,
        .addUserForm .FormGrp input:focus {
            border-radius: 2px;
            border: 1px solid rgba(154, 175, 213, 0.74);
            background-color: rgba(16, 25, 42, 0.74);
            min-width: 338px;
            width: 100%;
            height: 34px;
            color: #979797;
            padding: 5px 10px;
            font-size: 13px;
            outline: none;
        }

            .addUserForm .FormGrp input:-webkit-autofill {
                -webkit-background-clip: text;
                background-clip: text;
                color: #979797;
                -webkit-text-fill-color: #979797;
                -webkit-box-shadow: 0 0 0px 1000px rgba(16, 25, 42, 0.74) inset;
                transition: background-color 5000s ease-in-out 0s;
            }

            .addUserForm .FormGrp input::placeholder {
                color: #979797;
            }

::-webkit-calendar-picker-indicator {
    background-image: url(img/dashboard/filter/calendar-icon.svg);
    background-position: center;
}

.addUserForm .FormGrp select {
    border-radius: 2px;
    border: 1px solid rgba(154, 175, 213, 0.74);
    background-color: rgba(16, 25, 42, 0.74);
    /* background-color: #121D2F; */
    min-width: 338px;
    ;
    width: 100%;
    height: 34px;
    color: rgba(151, 151, 151, 1);
    padding: 5px 10px;
    appearance: none;
    /* position: relative; */
    font-size: 13px;
    outline: none;
}

.addUserForm .FormGrp.selectFormGrp::after {
    content: "";
    position: absolute;
    background-image: url(img/dashboard/filter/dropdown-icon.svg);
    width: 7px;
    height: 4px;
    inset-inline-end: 12px;
    bottom: 15px;
    /* z-index: 9; */
    background-repeat: no-repeat;
}

.addUserForm .FormGrp option {
    /* background-color:rgba(16, 25, 42, 0.74); */
}

.addUser .formButtons {
    padding: 8px 35px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 70px;
}

    .addUser .formButtons button {
        width: 144px;
        height: 42px;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 12px;
        font-weight: 500;
        outline: none;
        align-self: flex-end;
        margin: 0px 8px 16px;
        overflow: hidden;
    }

    .addUser .formButtons .submitBtn {
        border: 1px solid #30C36C;
        background: #30C36C;
    }

    .addUser .formButtons .clearBtn {
        background: transparent;
        border: 1px solid #F5F5F5;
    }
p.formErrorMsg {
    background: rgba(255, 142, 133, 1);
    box-shadow: 0px 3px 6px rgb(39 45 59 / 20%);
    color: rgba(40, 62, 99, 1);
    font-weight: 700;
    border: 1px solid rgba(255, 58, 41, 1);
}