@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: 300; */
    font-style: normal;
}

body {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-fluid {
    max-width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.left-section {
    background-color: #fff;
}
.fw-500{
    font-weight: 500;
}
.form-label{
    font-weight: bold;
}
.form-container {
    max-width: 600px;
    margin: auto;
}
.form-control {
	height: calc(2.2em + .75rem + 10px);
	border-radius: 10px;
	background: #f2f5f8;
	border: none;
	padding: 20px;
}
.form-control:focus {
	background-color: #f2f5f8;
	border: 1px solid #16C098;
}
.input-group-text {
	background-color: #f2f5f8;
	border: none;
	border-radius: 10px;
}
.brand-name {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.highlight {
    color: #16C098;
}

.sub-text {
    color: #999;
}

.show-password {
    cursor: pointer;
}

.login-button {
    background-color: #16C098;
    border-radius: 10px;
    height: calc(2.2em + .75rem + 5px);
    border: #16C098;
    color: white;
}

.btn-success:hover {
	color: #fff;
	background-color: #07a17d;
	border-color: #07a17d;
}
.sign-up {
    text-align: center;
}

.sign-up a {
    color: #16C098;
    text-decoration: none;
}

.right-section .side-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.trusted-info {
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.trusted-info p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

.more-users {
    font-size: 14px;
    font-weight: bold;
    color: #16C098;
}

/* Media Queries for Mobile */
@media (max-width: 992px) {
    .right-section {
        display: none; /* Hide the right section on small screens */
    }

    .left-section {
        padding: 20px;
        width: 100%;
    }

    .trusted-info {
        font-size: 12px;
    }

    .avatar {
        width: 25px;
        height: 25px;
    }

    .more-users {
        font-size: 12px;
    }
}
