/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e8f5e9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styling */
.login-container {
    background-color: #2e7d32;
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h1 {
    margin-bottom: 1.5rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

input {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    margin-top: 0.25rem;
}

input:focus {
    outline: 2px solid #1b5e20;
}

.login-button {
    background-color: #1b5e20;
    color: white;
    font-size: 1rem;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #43a047;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-container {
        padding: 1.5rem;
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e8f5e9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

/* Container Styling */
.lead-form-container {
    background-color: #2e7d32;
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.lead-form-container h1 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    margin-top: 0.25rem;
}

textarea {
    resize: none;
}

input:focus,
textarea:focus {
    outline: 2px solid #1b5e20;
}

button.submit-button {
    background-color: #1b5e20;
    color: white;
    font-size: 1rem;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button.submit-button:hover {
    background-color: #43a047;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

 /* Additional Styles for Button-Link */
        .button-link {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            text-align: center;
            border-radius: 5px;
            margin-top: 20px;
            width: 100%; /* Makes the button span full width */
            max-width: 200px; /* Optional, to limit the width */
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-align: center; /* Ensures text is centered */
        }

        .button-link:hover {
            background-color: #45a049;
        }

        /* Centering the Button Link */
        .center-button {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }