/* signin.css */

/* Updated styles */
.footer-bottom {
    background-color: white; /* Retain white background for the footer */
    color: #000; /* Text color set to black or adjust as needed for readability */
    padding: 20px 0; /* Keep padding for spacing */
    position: fixed; /* Lock the footer to the bottom */
    bottom: 0; /* Align to the bottom of the viewport */
    width: 100%; /* Ensure the footer spans the full width */
    border-top: 1px solid #e0e0e0; /* Light grey border at the top */
    margin-top: 0; /* Remove margin to prevent offset */
}


.footer__copyright {
    text-align: center; /* Center the copyright text */
    color: #333; /* Darker text color */
}

.footer__copyright a {
    color: #F37A1F; /* Change link color to orange */
    text-decoration: none; /* Remove underline from links */
}

.footer__copyright a:hover {
    text-decoration: underline; /* Optional: underline on hover */
}

.box-color {
    background-color: white; /* White background for the login box */
    padding: 30px; /* Add padding to the box */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow effect */
}

/* Button styles */
.btn-signin {
    background-color: #F37A1F; /* Orange color for the sign-in button */
    color: white; /* White text color */
    border: none; /* Remove border */
}

.btn-signin:hover {
    background-color: #D96C14; /* Darker orange on hover */
}

/* Specific styles for text links */
.orange-link {
    color: #F37A1F; /* Color for orange links */
}

.orange-link:hover {
    text-decoration: underline; /* Underline on hover */
}

/* New style for logo alignment */
.navbar .pull-left {
    padding-left: 60px; /* Adjust the value as needed to push the logo to the right */
}
.md-form-group {
    margin-bottom: 0; /* Removes any bottom margin */
}

.btn-signin {
    margin-top: 10px; /* Adjust spacing above the button as necessary */
}
