@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.box-shadow {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
/* Custom styling */
.login-logo {
    max-width: 30%;
    width: 550px; /* Adjust the max-width as needed */
    height: 200px;
}

.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    max-width: 100%; /* Adjust the max-width as needed */
}
.w-350 {
    width: 350px;
}

/* Center the form on small screens */
@media (max-width: 767px) {
    .form-container {
        max-width: 100%; /* Ensure form takes full width on mobile */
    }
    .form-control {
        width: 100%;
    }
}
/* Add top padding for larger screens */
@media (min-width: 768px) {
    .container-login {
        padding-top: 100px; /* Adjust the padding as needed */
    }
}
/* Center the form on small screens */

.btn-login {
    background-color: #f03d36;
    color: #fff;
    border-radius: 4px;
}
.btn-login:focus {
    background-color: #f03d36;
    color: #fff;
}
.btn-login:hover {
    background-color: #ca3530;
    color: #fff;
}
.form-check-label {
    font-size: 10px;
}
.f-12 {
    font-size: 10px;
}
