/* Set the background color for the entire body */
body {
    background-color: #0a0f0d; /* Dark green background */
    color: #fff; /* White text color */
    font-family: Arial, sans-serif; /* Font style */
}

/* Center the main content vertically and horizontally */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); /* Full height minus header and footer */
    padding: 20px;
}

/* Layout for the login page */
.login-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Text section on the login page */
.login-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.login-text h1 {
    color: #e9dcdc; /* White heading color */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.login-text p {
    color: #fff; /* White text color */
    /* font-size: 1.2rem; */
    margin-bottom: 20px;
    font-size: clamp(18px, 0.875rem + ((1vw - 3.2px) * 0.179), 16px);
}

/* Styling for the paragraph asking if the user has no account */
.login-page p {
    font-size: clamp(18px, 0.875rem + ((1vw - 3.2px) * 0.179), 16px); /* Responsive font size */
    color: white; /* White text color to match the design */
    margin-bottom: 20px;
}

/* Styling for the link inside the "no account" message */
.login-page p a {
    color: #28a745; /* Green color for the link to match buttons */
    text-decoration: underline;
}

.login-page p a:hover {
    color: #218838; /* Darker green on hover */
}
.google-login-btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #db4437; /* Google's red color */
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover effect */
.google-login-btn:hover {
    background-color: #c53727; /* Slightly darker shade */
    transform: translateY(-2px);
}

/* Focus effect */
.google-login-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(219, 68, 55, 0.5);
}

/* Add Google icon spacing */
.google-login-btn i {
    margin-right: 8px; /* Space between icon and text */
    vertical-align: middle;
    font-size: 18px;
}
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-login-btn {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #059e45;
    border-radius: 20px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.social-login-btn:hover {
    background-color: #f5f5f5;
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}
/* Styling for the password reset link */
.password-reset-link {
    margin-top: 10px;
    text-align: center;
}

.password-reset-link a {
    color: #28a745; /* Same green color as the buttons */
    text-decoration: underline;
}

.password-reset-link a:hover {
    color: #218838; /* Darker green on hover */
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #28a745; /* Button green color */
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    margin-right: 10px;
}

.cta-button.secondary {
    background-color: #28a745; /* Darker magenta for secondary button - 9a0360 */
}

.cta-button:hover {
    background-color: #218838; /* Darker green button hover color */
}

.cta-button.secondary:hover {
    background-color: #218838; /* Even darker green for secondary button hover */
}

/* Container for form centering and styling */
.form-container {
    flex: 1;
    max-width: 40%;
    background-color: #e5eee9; /* Slightly lighter dark green for form container */
    color: #28a745; /*  text color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
    margin-top: 4rem;
}

/* Page heading style */
.form-container h1 {
    color: #218838; /* White heading color */
    margin-bottom: 20px;
}
.form-container p {
    color: #218838; /* White heading color */
    
}

/* Grouping form fields for better styling */
.form-group {
    display: flex;
    align-items: Right; /* Vertically center the checkbox and label */
    margin-bottom: 10px
}

/* Label style */
.form-group label {
    color: #218838; /* White label color */
    display: block;
    margin-bottom: 5px;
    text-align: left;
}

/* Input field style */
.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #fff ; /* Dark green input background */
    color: #162821; /* White input text color */
    margin-left: 40px
}

/* Checkbox input field style */
.form-group input[type="checkbox"] {
    margin-right: 15px; /* Space between the checkbox and the label */
    width: auto; /* Ensure the checkbox maintains its default size */
    height: auto;
    vertical-align: middle; /* Ensure it's vertically aligned with the text */
}

/* Submit button style */
.form-group button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #28a745; /* Button color */
    color: #fff;
    cursor: pointer;
}

/* Submit button hover effect */
.form-group button:hover {
    background-color: #218838; /* Darker green button hover color */
}

/* Video container styles */
#videoContainer {
    display: none;
    position: fixed;
    top: 20%; /* Centering from top of the viewport */
    left: 20%; /* Centering from left of the viewport */
    width: 60%; /* Taking 60% of the viewport width */
    background: rgba(0, 15, 13, 0.9); /* Semi-transparent background matching the theme */
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    z-index: 100; /* Ensuring it's above other content */
    border-radius: 8px;
}

#videoContainer video {
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
}

#closeVideo {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    background-color: #444; /* Optional: adds background to the close button */
    border-radius: 50%;
    padding: 5px;
}

#closeVideo:hover {
    color: #ccc; /* Lighter shade when hovered */
}

/* Responsive styles */
@media (max-width: 768px) {
    .login-page {
        flex-direction: column;
        align-items: center;
    }

    .login-text {
        max-width: 100%;
        text-align: center;
    }

    .form-container {
        max-width: 100%;
    }

    .cta-button {
        margin-bottom: 10px;
        width: 100%;
    }
}
