/* General styling */
body {
    font-family: 'Heebo', sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}

/* Form container styling */
.seller-form-container {
    width: 60%;
    margin: 3% auto;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 30px 40px;
    border-radius: 15px;
}

h2 {
    text-align: center;
    color: #213A57;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Form Styling */
.seller-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #4b9dda;
    outline: none;
}

/* Textarea and Selectbox styling */
textarea {
    resize: vertical;
    height: 100px;
}

select {
    height: 45px;
}

/* Button Styling */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-radius: 10px;
}

button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button.submit-btn {
    background: #213A57;
    color: #fff;
}

button.submit-btn:hover {
    background: #1a2d44;
}

button.clear-btn {
    background: #f44336;
    color: #fff;
}

button.clear-btn:hover {
    background: #d73827;
}

/* Login/Signup Link Options */
.login-option {
    margin-top: 20px;
    text-align: center;
}

.login-option p {
    font-size: 14px;
    color: #555;
}

.login-option a {
    color: #4b9dda;
    font-weight: 600;
    text-decoration: none;
}

.login-option a:hover {
    text-decoration: underline;
}

/* Registration and Login Page Layout */
.registration,
.login {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.registration {
    background: #f0f5f9;
}

.login {
    background: #e9ecf2;
}

/* Alert Styling */
.alert {
    width: 70%;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seller-form-container {
        width: 90%;
    }

    h2 {
        font-size: 20px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}
