﻿/* Center the sign-in form and apply background color */
.sign-in-section {
    max-width: 600px; /* Same width as Create Buyer Account */
    margin: 0 auto;
    padding: 40px;
    background-color: #fff7e6; /* Same background color for consistency */
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left; /* Center text inside the form */
}

    .sign-in-section h1 {
        font-size: 28px;
        color: #d84315;
        margin-bottom: 20px;
    }

    .sign-in-section p {
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sign-in-section input {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 4px;
        border: 1px solid #ccc;

    }

    .sign-in-section button {
        background-color: #ffb800;
        border: none;
        padding: 12px 20px;
        font-size: 18px;
        cursor: pointer;
        border-radius: 5px;
        width: 100%;
    }

        .sign-in-section button:hover {
            background-color: #ff9900;
        }

.auth-links {
    color: #f57f17;
    text-decoration: underline;
    font-weight: bold;
}

    .auth-links:hover {
        color: #ff9900;
        text-decoration: none;
    }
/* Flexbox container for Checkbox and Forgot Password */
.form-group-inline {
    display: flex;
    /*justify-content: space-between;*/ /* Space between checkbox/label and Forgot Password */
    align-items: flex-start;
    margin-bottom: 20px;
    text-align: left;
}

    /* Styling for Checkbox and Label */
    .form-group-inline input[type="checkbox"] {
        
        width: unset;
    }

/* Styling for Forgot Password link */
.forgot-password-link {
    text-align: right; /* Right align the Forgot Password link */
    color: #f57f17;
    text-decoration: underline;
    font-weight: bold;
}

    .forgot-password-link:hover {
        color: #ff9900;
        text-decoration: none;
    }

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
