﻿/* Create Buyer Account Styles */
.create-buyer-account, .create-seller-account {
    max-width: 50%; /* Limit form width to half of the screen */
    margin: 0 auto; /* Center the form itself */
    padding: 40px;
    background-color: #fff7e6;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text within the form to the left */
}

    .create-buyer-account h1, .create-seller-account h1 {
        font-size: 28px;
        color: #d84315;
        margin-bottom: 20px;
        text-align: center; /* Center the title */
    }

/* Standard Form Styling */
.form-group, .form-group-inline {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; /* Align label and input vertically */
}

    .form-group label, .form-group-inline label {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        text-align: left; /* Align the label text to the left */
        margin-bottom: 5px; /* Space between label and input */
    }

    .form-group input, .form-group-inline input {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
        width: 100%; /* Ensure full width consistency */
    }

.form-group-verify input {
    width: 80%;
}
/* Container for email input and button */
.input-with-button {
    position: relative;
    width: 100%;
}

    /* Official Email Input */
    .input-with-button input[type="email"] {
        width: 100%;
        padding-right: 90px; /* Provide space for the button inside the input */
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
    }

    /* Verify Button */
    .input-with-button .btn-verify {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        padding: 0 15px;
        background-color: #ffb800;
        color: white;
        border: none;
        border-radius: 0 4px 4px 0; /* Rounded corners only on the right */
        cursor: pointer;
        font-size: 16px;
    }

        .input-with-button .btn-verify:hover {
            background-color: #ff9900;
        }


    /* Ensure inline buttons match the size of input fields */
    .btn-verify, .btn-submit-code {
        background-color: #ffb800;
        color: white;
        border: none;
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        margin-left: 10px;
        width: 100px; /* Keep buttons aligned with inputs */
    }

    .btn-verify:hover, .btn-submit-code:hover {
        background-color: #ff9900;
    }

/* Checkbox and terms */
.terms input[type="checkbox"] {
    margin-right: 10px;
}

.terms label {
    display: inline;
    font-size: 14px;
    text-align: left;
}

/* Register Button Styling */
.btn-register {
    background-color: #ffb800; /* Same as the Get Started button */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
    width: 100%;
}

    .btn-register:hover {
        background-color: #ff9900;
    }

/* Centering the form and limiting width */
.create-buyer-account input, 
.create-buyer-account button {
    max-width: 100%;
    box-sizing: border-box; /* Ensure consistent width including padding */
}

/* Hide the verification code section initially */
#verification-code-section {
    display: none;
}
/* Consistent Link Styling for all sign-in, forgot password, and account creation links */
.auth-links {
    color: #f57f17; /* Use the same color for all authentication links */
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}

    .auth-links:hover {
        color: #ff9900; /* Hover effect for all authentication links */
        text-decoration: none;
    }
