.form-sec {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;

}

.form-parent {
    position: relative;
    border: 1px solid #fff;
    border-radius: 24px;
    padding: 20px 50px;
    box-shadow: 5px 7px 15px #0000004c;
}

.small-it {
    transform: scale(0.84);
    max-height: 100vh;
}

.form-desc {
    color: #4D4D4D;
    max-width: 450px;
}

.input-container {
    position: relative;
    width: 100%;
    /* Ensures the container spans full width */
    max-width: 400px;
    /* Limit max-width if needed */
    flex: 1;
    /* Allows the input container to stretch */
    margin-inline: auto;
    margin-bottom: 20px;
}

.input-container img {
    position: absolute;
    left: 15px;
    top: 55%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    opacity: 0.8;
}

.styled-input {
    width: 100%;
    /* Full width within the container */
    padding: 7px 15px 7px 45px;
    /* Space for the icon */
    border: none;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 2px 0px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    outline: none;
    color: #555;
}

.styled-input::placeholder {
    color: #aaa;
}

.btn-submit {
    color: #FFFFFF;
    width: 85%;
    padding: 10px;
    background-color: #EF1919;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 14px;
    outline: none;
    border: none;
}

.btn-submit:hover {
    background-color: #c11313;
}

.input-check {
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-check p {
    padding: 0px;
    margin: 0px;
}

.input-check {
    margin-top: -10px;
    margin-bottom: 20px;
}

.input-check input {
    background: transparent;
}

.input-check p {
    font-size: 12px;
}

/* Base style for the checkbox */
/* Base style for the checkbox */
input[type="checkbox"] {
    -webkit-appearance: none;
    /* Remove default appearance */
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    /* Adjust size as needed */
    height: 15px;
    border: 1.4px solid #555;
    /* Border for the checkbox */
    border-radius: 4px;
    /* Rounded corners, optional */
    background-color: transparent;
    /* Transparent background */
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-right: 5px !important;
}

/* Style for when the checkbox is checked */
input[type="checkbox"]:checked {
    background-color: transparent;
    /* Keep transparent */
    border-color: #007bff;
    /* Change border color when checked */
    position: relative;
}

/* Optional: Style for a checkmark inside the checkbox */
input[type="checkbox"]:checked::after {
    content: '';
    /* No actual content, just a visual indicator */
    position: absolute;
    width: 5px;
    /* Adjust size as needed */
    height: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #007bff;
    /* Add a color for the checkmark */
    border-radius: 2px;
    /* Optional for a rounded checkmark */
}

.login-text {
    font-size: 15px;
    padding-top: 10px;
}

.form-img {
    max-width: 200px;
}

.bottom-text{
    position: absolute;
    bottom: 15px;
    right: 24%;
}
.btn-full-width{
    width: 89%;
}

.loader-style{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 150px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: 
      radial-gradient(farthest-side,#ff1616 94%,#0000) top/12px 12px no-repeat,
      conic-gradient(#0000 30%,#ff1616);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 12px),#000 0);
    animation: l13 1s infinite linear;
    margin-bottom: 30px;
  }
  
  @keyframes l13{ 
    100%{transform: rotate(1turn)}
  }


  .forget-pas{
    font-size: 14px;
    padding-left: 70px;
    margin-top: -10px;
  }
  .forget-pas a{
    text-decoration: none;
  }
  .login-btn{
    width: 78%;
  }
  .bottom-login-text{
    position: absolute;
    bottom: 15px;
    right: 30%;
  }

@media (max-width:1000px) {
    .bottom-text{
        right: 15%;
    }

}
@media (max-width:768px) {
    .small-it {
        transform: scale(1);
        margin-block: auto;
        max-height: 100vh;
        
    }
    .form-sec{
        margin-top: auto;
    }
    
    .form-parent {
        border: 0px;
        border-radius: 0px;
        padding: 0px;
        box-shadow: none;
        height: 100%;
    }
    
    .form-img {
        max-width: 250px;
    }
    
    .bottom-text{
        right: 10%;
        bottom: 15px;
    }
    .btn-full-width , .login-btn{
        width: 100%;
}
.bottom-login-text{
    right: 20%;
}
.forget-pas {
    padding-left: 12px;
}

}
@media (max-width:768px) {
    .bottom-login-text {
        right: 12%;
    }
}