/*******************************/
/********* General CSS *********/
/*******************************/
html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
    width: 100%;
    color: #666666;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

a:hover,
a:active,
a:focus {
    color: #000000;
    outline: none;
    text-decoration: none;
}

.wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    background: #ffffff;
}

.back-to-top {
  
    scroll-behavior: smooth;
    position: fixed;
    display: none;
    background: #a7a7a7;
    color: #121518;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #a7a7a7;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

/*******************************/
/*** Page Header Login Page ****/
/*******************************/

.page-header {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0;
}

/*******************************/
/********* Login_Form **********/
/*******************************/

/* Center the form on the page */
.com-users-login__form {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0;
  
}

/* Style the form itself */
.com-users-login__form {
    width: 300px; /* Set a fixed width for the form */
    margin: 0 auto;
    text-align: left; /* Align text to the left */
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    border: 1px solid #6a6a6a; /* Optional border */
    border-radius: 5px; /* Rounded corners */
    background-color: #fff; /* Background color */
}

/* Style the form fields */
.com-users-login__form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.com-users-login__form input[type="text"],
.com-users-login__form input[type="password"],
.com-users-login__form input[type="submit"] {
    width: 100%; /* Full width of the form container */
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Input border */
    border-radius: 4px; /* Rounded corners */
    box-sizing: border-box; /* Include padding and border in width */
}

/* Style the submit button */
.com-users-login__submit input[type="submit"] {
    background-color: #007BFF; /* Button color */
    color: #fff;
    cursor: pointer;
    border: none;
}

.com-users-login__submit input[type="submit"]:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/**********************************/
/* Login_Form_and_Password Button */
/**********************************/

/* Adjust button size and color */
button.btn.btn-primary {
    appearance: none !important;;
    -webkit-appearance: none !important;;
    -moz-appearance: none !important;;
    background-color: #007BFF !important; /* Blue color */
    color: #fff !important; /* White text */
    padding: 10px 20px !important; /* Adjust padding for button size */
    font-size: 14px !important; /* Adjust font size */
    border: none !important; /* Remove border */
    border-radius: 5px !important; /* Rounded corners */
    cursor: pointer !important;
    transition: background-color 0.3s ease-in-out !important;
    margin-top: 7px !important;
}

/* Hover effect */
button.btn.btn-primary:hover {
    background-color: #0056b3 !important; /* Darker blue on hover */
}

button.btn.btn-secondary {
  
    appearance: none !important;;
    -webkit-appearance: none !important;;
    -moz-appearance: none !important;;
    background-color: #007BFF !important; /* Blue color */
    color: #fff !important; /* White text */
    padding: 10px 20px !important; /* Adjust padding for button size */
    font-size: 14px !important; /* Adjust font size */
    border: none !important; /* Remove border */
    border-radius: 5px !important; /* Rounded corners */
    cursor: pointer !important;
    transition: background-color 0.3s ease-in-out !important;
}

button.btn.btn-secondary:hover {
    background-color: #0056b3 !important; /* Darker blue on hover */
}

/*****************/
/* Logout Button */
/*****************/

.tristar-logout-button {
    background-color: #007BFF !important; /* Change to any color */
    color: #fff !important; /* Text color */
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 4px;
}

.tristar-logout-button:hover {
    background-color: darkred; /* Darker color on hover */
}

/********************************************/
/* Forgot pass,user and create account text */
/********************************************/

.com-users-login__options.list-group {
    width: 300px; /* Set a fixed width for the form */
    margin: 0 auto;
    text-align: left; /* Align text to the left */
    padding: 20px;
    background-color: #fff; /* Background color */
}

.com-users-login__options.list-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center; /* Center horizontally */ 
    text-align: left;
    margin-top: 7px auto;
    
}

@media screen and (max-width: 600px) {
.com-users-login__form {
     width: 70%;
     display: block;
    }
#mod-custom110 img {
     width: 90%;
     display: block;
}
}

/**************************************/
/* Profile Cancel Button (Inside Edit)*/
/**************************************/

.profile-cancel-button {
    background-color: #007BFF !important; /* Change to any color */
    color: #fff !important; /* Text color */
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 7px;
}

.profile-cancel-button:hover {
    background-color: darkred; /* Darker color on hover */
}

    