/* sign-in.css */

/* Center the form */
.form-signin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 350px; /* Adjust the max-width as needed */
    width: 100%;
    padding: 15px;
}

/* Form container */
.form-signin {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px; /* Add padding to create space between sections */
}

/* Form header */
.form-signin h1 {
    margin-bottom: 20px;
    color: #343a40;
    text-align: center;
}

/* Form inputs */
.form-signin .form-floating {
    margin-bottom: 20px;
}

/* Form labels */
.form-signin label {
    color: #6c757d;
    margin-bottom: 10px; /* Add vertical space between labels and form fields */
    display: block; /* Ensure each label occupies a separate line */
}

/* Form fields */
.form-signin input[type="text"],
.form-signin input[type="password"],
.form-signin input[type="email"],
.form-signin input[type="tel"],
.form-signin input[type="number"],
.form-signin input[type="date"],
.form-signin input[type="url"],
.form-signin input[type="search"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

/* Form submit button */
.form-signin button[type="submit"] {
    margin-top: 20px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.form-signin button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Remember me checkbox */
.form-signin .form-check {
    margin-bottom: 20px; /* Add margin between checkbox and submit button */
}

.form-signin .form-check-label {
    margin-left: 0; /* Remove horizontal space between label and checkbox */
    margin-right: 160px; /* Adjust horizontal space as needed */
}

/* Footer */
.form-signin .mt-5 {
    margin-top: 20px;
    text-align: center;
    color: #6c757d;
}
