 body {
    background-color: #fff3e0; /* Lighter orange background */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #bf360c; /* Dark orange text color */
}
.login-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #b37400; /* Orange border */
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-direction: row; /* Ensure row direction on all screens */
}
.logo-title img {
    max-width: 70px; /* Increase logo size */
    margin-right: 20px;
}
.logo-title h2 {
    margin: 0;
    color: #e69500; /* Orange color for the title */
    margin-left: 0px;
    margin-right: 35px;
}
.btn-sea-blue {
    background-color: #e69500; /* Orange color for button */
    color: #fff;
}
.btn-sea-blue:hover {
    background-color: #b37400; /* Light orange for hover */
    color: #fff;
}
footer {
    background-color: #e69500; /* Orange color for footer */
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: auto;
}
.input-group-text {
    background-color: #e69500; /* Orange color for input group text */
    color: white;
    border: none;
    border-radius: 0;
}
.form-control:focus {
    box-shadow: none;
}
@media (max-width: 576px) {
    .login-container {
        margin: 20px;
        padding: 15px;
    }
}