﻿/* Google Font Link */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Tahoma;
}

body {
    min-width:420px;
    overflow-x:auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 1px solid #ccc;
}

.container {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: #fff;
    padding: 40px 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    perspective: 2700px;
    border: 1px solid #ccc;
}

.login-form form {
    padding-top: 1rem;
}

div .error-message {
    text-align: -webkit-center;
}

.signup-form form {
    padding-top: 1rem;
}

#ipAddress, #ipAddress1 {
    padding: 2rem 5rem;
    font-size: .6rem;
}

.container .cover {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
    z-index: 98;
    transition: all 1s ease;
    transform-origin: left;
    transform-style: preserve-3d;
}

.container #flip:checked ~ .cover {
    transform: rotateY(-180deg);
}

    .container #flip:checked ~ .cover .front {
        transition: all 0.3s ease;
        visibility: hidden;
    }

    .container #flip:checked ~ .cover .back {
        transition: all 0.3s ease;
        visibility: visible;
    }

.container #flip ~ .cover .front {
    transition: all 0.3s ease;
    visibility: visible;
}

.container #flip ~ .cover .back {
    transition: all 0.3s ease;
    visibility: hidden;
}

.container .cover .front,
.container .cover .back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
}

.cover .back {
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover::before,
.container .cover::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border: 1px solid #6c757d;
    opacity: 0.5;
    z-index: 12;
}

.container .cover::after {
    opacity: 0.3;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.container .cover .text {
    position: absolute;
    z-index: 130;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover .text .text-1,
.cover .text .text-2 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.cover .text .text-2 {
    font-size: 15px;
    font-weight: 500;
}

.container .forms {
    height: 100%;
    width: 100%;
    background: #fff;
}

.container .form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-content .login-form,
.form-content .signup-form {
    width: calc(100% / 2 - 25px);
}

.forms .form-content .title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

    .forms .form-content .title:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 25px;
        background: #6c757d;
    }

.forms .signup-form .title:before {
    width: 20px;
}

.forms .form-content .input-boxes {
    margin-top: 30px;
}

.forms .form-content .input-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.left-padd {
    margin: 1em;
    margin-left: 3%;
}
.right-padd-mobile-icon{
    margin:1em;
    margin-left:40%;
}
.form-content .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 3rem;
    font-size: 1.1rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-content .input-box select {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 3rem;
    font-size: 1.1rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-content .input-box i {
    position: absolute;
    color: #6c757d;
    font-size: 17px;
}

.forms .form-content .text {
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

    .forms .form-content .text a {
        text-decoration: none;
    }

        .forms .form-content .text a:hover {
            text-decoration: underline;
        }

.forms .form-content .button {
    color: #fff;
    margin-top: 40px;
}

    .forms .form-content .button input {
        color: #fff;
        background: #6c757d;
        border-radius: 6px;
        padding: 0;
        cursor: pointer;
        transition: all 0.4s ease;
    }

    .forms .form-content .button button {
        color: #fff;
        background: #6c757d;
        border-radius: 6px;
        padding: 0;
        cursor: pointer;
        transition: all 0.4s ease;
        width: 100%;
        height: 2.5rem;
        ;
    }

    .forms .form-content .button input:hover {
        background: grey;
    }

#email, #CountryId, #resetemail {
    cursor: pointer;
}

input:focus {
    border: 1px solid #333;
    background-color: whitesmoke;
}
#CountryId {
    font-size: 1em; /* Adjust the size as needed */
    width:55%;
    padding-left:3em;
}
    #CountryId::placeholder {
        font-size: .9em; /* Adjust the size as needed */
        color: #827373; /* Optional: You can also adjust the placeholder color */
        font-family: Arial, Helvetica, sans-serif;
        padding-left: 2%;
    }
.input-validation-error {
    border-color: red !important;
}

.field-validation-error {
    display: none;
}

.forms .form-content label {
    color: lightgray;
    cursor: pointer;
}

    .forms .form-content label:hover {
        text-decoration: underline;
    }

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
    text-align: center;
    margin-top: 25px;
}

.forms .form-content label.login-link {
    color: rgba(0, 0, 238);
}

.container #flip {
    display: none;
}

@media (max-width: 730px) {
    .container .cover {
        display: none;
    }

    .form-content .login-form,
    .form-content .signup-form {
        width: 100%;
    }

    .form-content .signup-form {
        display: none;
    }

    .container #flip:checked ~ .forms .signup-form {
        display: block;
    }

    .container #flip:checked ~ .forms .login-form {
        display: none;
    }
}
#agent_login {
    display: none;
}
p.account, p.account1 {
    padding-top: 20px;
    padding-bottom: 0px;
    line-height: 1.5em;
    font-size: 13px;
}

    p.account a, p.account1 a {
        color: #ff4040;
        font-size: 11px;
        text-decoration: underline;
    }

        p.account a.error {
            color: #ff4040;
            font-size: 11px;
            text-decoration: none;
            font-weight: bold;
        }

        p.account a:hover, p.account1 a:hover {
            text-decoration: none;
        }

    p.account strong span {
        padding: 2px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 2px;
    }
    #watermark {
        position: fixed;
        z-index: 10000;
        bottom: 400px;
        left: 150px;
        font-size: 30px;
        font-weight: bold;
        font-style: italic;
        color: red;
        transform: rotate(-40deg);
        opacity: 0.2;
    }

img.logo {
    height: 40px !important;
    width: 40px !important;
    position: absolute;
}

#togglePassword {
    cursor: pointer;
    position: relative;
    visibility: hidden;
}

    #togglePassword:hover {
        visibility: visible !important;
    }

.login-form {
    height: 450px;
}

.signup-form {
    height: 450px;
}

#hostedscan {
    height: 30px;
    width: auto;
}

.login-logo {
    height: 40px;
}

.submit-progress {
    position: fixed;
    height: 10em;
    padding-top: 2.5em;
    /* The following rules are the
    ones most likely to change */
    width: 15em;
    /* Set 'margin-left' to a negative number
    that is 1/2 of 'width' */
    padding-left: 5em;
    background-color: white;
    color: black;
    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    border-radius: 0.4em;
    border: 1px solid rgba(0,0,0,0.6);
    box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -webkit-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -moz-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    z-index: 999;
}

.submit-progress-bg {
    background-color: lightgray;
    opacity: .8;
}

.submit-progress.hidden {
    display: none;
}

.remarks {
    background-color: lightgoldenrodyellow;
}

.input-group .input-group-text {
    background-color: #fff; /* Match input background */
    border-left: 0; /* Remove border overlap with input */
    cursor: pointer;
}

.input-group input {
    border-right: 0; /* Remove border overlap with dropdown */
}

.input-group .input-group-append:hover {
    background-color: #f0f0f0; /* Highlight on hover */
}

.input-group-append-caret {
    position: relative;
    left: -30px;
    top: -10px;
}

/* Styling for the dropdown list that appears below the input */
.ui-autocomplete {
    border: 1px solid #ccc;
    max-height: 200px; /* Limit the height of the dropdown */
    overflow-y: auto; /* Enable scrolling if dropdown is long */
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 9999; /* Ensure the dropdown is on top */
}

/* Hover effect for dropdown items */
.ui-menu .ui-menu-item:hover {
    background-color: #007bff;
    color: darkblue;
}

/* Selected item style */
.ui-state-active {
    background-color: #007bff !important;
    color: white !important;
}

/* Adjust the font of the dropdown items */
.ui-menu .ui-menu-item {
    padding: 8px 12px;
    cursor: pointer;
}
.login-disabled {
    pointer-events: none;
    color:lightgrey;
}
.anchor-disabled {
    pointer-events: none;
    cursor:none;
}
.hidden-section {
    display: none;
    opacity: 0;
    transition: opacity 2s ease-in-out; /* Smooth fade-in/fade-out transition */
}
.show {
    display: block; /* Make modal visible */
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 1; /* Fully visible */
}
/* Style the eye icon */
#eyeIconCurrent {
    font-size: 18px; /* Adjust the size */
    color: #999; /* Color for normal state */
    cursor: pointer; /* Pointer cursor to show it’s clickable */
    transition: color 0.3s ease; /* Smooth transition effect */
    padding: 0 10px; /* Add some space around the icon */
}

    /* Hover effect */
    #eyeIconCurrent:hover {
        color: #333; /* Darker color on hover */
    }

    /* Optionally, change color when password is visible */
    #eyeIconCurrent.visible {
        color: #999; /* Change color when password is visible */
    }

/* Align the icon with the input field */
.password-toggle {
    position: absolute;
    right: 1em;
    top: 30%;
    transform: translateY(-50%);
    padding:0px 1.8em;
}

/* Optional: Add focus or active styles */
#eyeIconCurrent:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add focus ring on icon */
}
.password-info-icon {
    color: darkblue;
    font-size:.7em;
    cursor:default;
}
    .password-info-icon:hover {
        cursor: default;
    }
.form-content .input-box input.country-code {
    padding: 1em;
}

.dropdown-flag {
    width: 20px;
    height: 14px;
    margin-right: 8px;
    vertical-align: middle; /* Align flag vertically with text */
}
.flag-icon {
    height: 100%;
    width: 100%;
    border: 1px solid #ddd;
}
.country-code-text {
    position: absolute;
    top: 50%;
    left: 10px; /* Adjust this to your needs */
    transform: translateY(-50%); /* Vertically center the flag */
    pointer-events: none; /* Prevent flag from being clicked */
}
.input-group-prepend{
    height:100%;
}
#country-flag {
    width: 20px; /* Adjust the size of the flag */
    height: 14px; /* Adjust the size of the flag */
}
.input-group-append-caret {
    display: flex;
    align-items: center;
}

.ui-menu-item {
    font-size: .9em; /* Adjust the size as needed */
    font-family: Arial, Helvetica, sans-serif;
}