/* *{
    background-color: rgba(255, 245, 245, 0.859);
} */


body {

    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full height of the viewport */
    margin: 0; /* Remove default margin */
}

.container {
    width: 100%;
    max-width: 400px; /* Set a max width for the container */
}

.login-form {
    padding: 2rem; /* Padding for the form */
 background-color: white;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.logo {
    width: 40px; /* Adjust the logo width */
    height: auto; /* Maintain aspect ratio */
}

.logo-title-wrapper {
    display: flex; /* Use flexbox to align logo and title */
    align-items: center; /* Center vertically */
    margin-top: -14px;

}

.title_logo
{
    padding-left:17px;
}

.text-purple {



    color: #348EC0; /* Purple text color */
    margin: 0; /* Remove default margin */
}

/* Additional button styles */


.btn-purple:hover {
    background-color: #348EC0; /* Darker purple on hover */
}
.error{
    color: red;
}
.text-danger {
    color: red; /* You can change this to any color you prefer */
    font-weight: bold; /* Optional: makes the text bold */
}

/* Custom Styles for Input Container */

/* .input-container {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
    position: relative;
}

.input-container .form-label {
    position: absolute;
    top: -10px;
    left: 10px;
    background: white;
    padding: 0 5px;
    font-weight: normal;
    font-size: 14px;
}

.input-group {
    width: 100%;
}

.input-no-border {
    border: none;
    box-shadow: none;
    outline: none;
}

.form-control
{
    top: -20px;
    height:100%;
    width:100%;
} */
/* Custom Styles for Input Container */

.input-container {
    width: 100%;
    border: 1px solid #e0e0e0; /* Light border around the input group */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding inside the border */
    position: relative; /* Position relative for label placement */
}

.input-container .form-label {
    position: absolute; /* Position label absolutely */
    top: -10px; /* Adjust as necessary */
    left: 10px;
    background: white; /* Background to cover input */
    padding: 0 5px; /* Padding for label */
    font-weight: normal; /* Normal weight for label */
    font-size: 14px; /* Font size adjustment */
}

.input-group {

    display: flex;
    align-items: center;
}

.input-no-border {
    border: none; /* Remove border from input field */
    box-shadow: none; /* Remove any shadow */
    outline: none; /* Remove outline */
    padding-left: 10px; /* Add padding to prevent text from touching the icon */
}

.form-control {
    height: 100%;
    width:100%; /* Match the height of the input group */
}

/* Icon Styling */
.input-icon {
    width: 20px; /* Set width for the icon */
    height: 20px; /* Set height for the icon */
    vertical-align: middle; /* Align icon vertically */
}
a {
    border: none; /* Remove border */
    outline: none; /* Remove outline on focus */
    text-decoration: none; /* Remove underline if not desired */
}

a:hover,
a:focus {
    border: none; /* Ensure no border on hover/focus */
    outline: none; /* Ensure no outline on hover/focus */
}
.forget{
    display: block;
    text-align: right;
    margin-top: 20px;
}

.left{
    display: block;
    text-align: left;
    margin-top: 20px;
    /* text-align: top; */
    margin-top: -21px;
}



.btn {
    margin-top:10px;
   height:100%;
   width: 100%;
   background-color: #348EC0;

}
.eye
{
    background-color: transparent;
    border: transparent;
}



.button-container {
    height: 43px;
    color: #fff;
    margin-top: 20px;
    width: 100%;
    border: 1px solid #e0e0e0; /* Light border around the input group */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Padding inside the border */
    position: relative; /* Position relative for label placement */
}

.button{
    width: 100px;

}

