body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    box-sizing: border-box;
}

.container-fuild {
    display: flex;
    width: 90% !important;
    height: 90vh;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .container {
        height: auto !important;
        flex-direction: column;
    }
    .left-section {
        display: none;
    }
}
.left-section {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100%;
}

.left-section img {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.left-section img.active {
    opacity: 1;
}

.right-section {
    flex: 1;
    /* background: #fff; */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.right-section span {
    font-weight: 600;
    color: var(--blue-color);
}
.right-section h1 {
    font-size: 36px;
    color: var(--blue-color);
    margin-bottom: 20px;
    font-weight: 700;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    padding-left: 40px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.form-group input::placeholder {
    font-size: 13px;
    color: #bdbbbb;
}
.form-group input:focus {
    border: 2px solid rgb(9, 7, 7) !important;
}
.form-group button svg {
    rotate: 180deg;
    margin-right: 10px !important;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 74%;
    transform: translateY(-50%);
    cursor: pointer;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    direction: rtl;
}
/* .btn svg:hover {
    background-color: var(--blue-color);
} */
.btn span {
    /* rotate: 180deg; */
    margin-right: 5px;
    color: white;
}

.btn:hover {
    background: #0056b3;
    color: white;
}

.icon {
    position: absolute;
    top: 55%;
    left: 10px;
    font-size: 20px;
    color: rgb(173, 180, 180) !important;
}
