﻿
/* Import the YekanBakh fonts */
@font-face {
    font-family: 'YekanBakhBold';
    src: url('/Fonts/YekanBakhHeavy.woff') format('woff');
    font-weight: bold;
}

@font-face {
    font-family: 'YekanBakhHeavy';
    src: url('/Fonts/YekanBakhHeavy.woff') format('woff');
    font-weight: 900;
}

@font-face {
    font-family: 'YekanBakhMedium';
    src: url('/Fonts/YekanBakhMedium.woff') format('woff');
    font-weight: 500;
}

.dropmate *{
    word-spacing : normal !important;
}
/*Forms css*/
.strong-name {
    color: #0078D4 !important;
}

form,
input,
label,
button,
textarea {
    font-family: 'YekanBakhMedium';
}


    form label {
        font-size: 14px;
        margin-bottom: 8px;
        font-family: 'YekanBakhBold';
    }

    form input {
        padding: 10px;
        border: 1px solid #dcdcdc;
        border-radius: 4px;
        margin-bottom: 5px;
        font-size: 14px;
        font-family: 'YekanBakhMedium';
        outline: none;
    }

.submit-btn {
    margin-top: 4px;
    background-color: #0078D4;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s all;
    font-family: 'YekanBakhBold';
}

    .submit-btn:hover {
        background-color: rgb(21, 99, 255);
    }


.form-container {
    max-width: 400px;
    width: 100%;
}



h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'YekanBakhHeavy', Arial, sans-serif;
    /* Apply Heavy font to the heading */
}

p {
    font-size: 16px;
    margin-bottom: 30px;
    font-family: 'YekanBakhMedium', Arial, sans-serif;
    text-align : justify;
}
/*Forms css*/



/*inputs*/
/* Custom styling for the password container */
.password-container {
    position: relative;
    display: block;
    align-items: center;
    width: 100%;
}



    /* Move the icon to the left */
    .password-container .pass-eye {
        position: absolute;
        left: 10px;
        top: 44%;
        transform: translateY(-50%);
        color: rgb(186 186 186);
        font-size: 18px;
        cursor: pointer;
    }

    /* Adjust padding of the input to make space for the icon */
    .password-container input {
        flex: 1;
        padding-left: 35px;
        /* Leave space for the eye icon on the left */
        font-family: 'YekanBakhMedium', Arial, sans-serif;
        /* Ensure your font applies here */
    }

/* Disable browser's default password visibility icon */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

/* input[type="password"]::-webkit-input-placeholder {
     visibility: hidden; 
} */

input[type="password"]::-webkit-textfield-decoration-container {
    display: none !important;
}




/* Ensure input fields take full width */
.password-container input,
input {
    width: 100%;
    box-sizing: border-box;
    /* Ensure padding doesn't affect the width */
}

/* Error messages should clear the input and appear below */
.error {
    color: red;
    font-size: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    clear: both;
    /* Ensure the error goes on the next line */
}


    .error i {
        margin-left: 3px;
        font-size: 12px;
        /* Size the icon appropriately */
    }

.input-info-note {
    color: #007bff;
    font-size: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    clear: both;
}

    .input-info-note i {
        margin-left: 3px;
        font-size: 12px;
    }

/* Invalid input styling */
input.invalid {
    border-color: red;
}

/* Valid input styling */
input.valid {
    border-color: green;
}

.success {
    color: green;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    clear: both;
    /* Ensure the icon goes on the next line */
}

    .success i {
        margin-left: 3px;
        font-size: 12px;
        /* Size the icon appropriately */
    }



/* Style the Forgot Password link */
.login-small-options {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

    .login-small-options .small-option{
        color: #000;
        text-decoration: none;
        font-size: 14px;
        font-family: 'YekanBakhMedium', Arial, sans-serif;
    }

        .login-small-options .small-option:hover {
            text-decoration: underline;
        }

.login-small-options-bellow-submit {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

    .login-small-options-bellow-submit .small-option {
        color: #000;
        text-decoration: none;
        font-size: 14px;
        font-family: 'YekanBakhMedium', Arial, sans-serif;
    }

        .login-small-options-bellow-submit .small-option:hover {
            text-decoration: underline;
        }

/*CSS for the toggle switch*/

.switch {
    position: relative;
    display: inline-block;
    width: 51px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 6px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #0078D4;
}

    input:checked + .slider:before {
        transform: translateX(26px);
    }

.slider.round {
    border-radius: 34px;
}
/*CSS for the toggle switch*/

/*inputs*/

.edit-profile-forms-container{
    width : 100%;
    max-width : 500px;
}