:root {
    --primary: #4CAF50;
    --primary-light: #81C784;
    --primary-dark: #388E3C;
    --secondary: #FFD700;
    --secondary-light: #FFF176;
    --text: #2C3E50;
    --text-light: #6B7280;
    --background: #F9FBE7;
    --white: #FFFFFF;
    --error: #DC2626;
    --success: #4CAF50;
  }


/* General Styling */
body {

    font-family: system-ui, -apple-system, sans-serif;
    background-image:url(285329064_341236191484778_5089772171719355034_n.jpg);
    background-size: cover;  /* Cover the entire page */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating */
    background-attachment: fixed; /* Fixed position while scrolling */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login and Sign-Up Page Container */
.LOGIN-PAGE {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    padding: 20px;
    text-align: center;
}

/* Logo Styling */
.logo img {
    width: 100px;
    display: block;
    margin: 0 auto 20px;
}

/* Form Header */
h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Form Fields */
.mb-3 {
    margin-bottom: 15px;
    text-align: left;
}

.mb-3 label {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 5px;
}

.mb-3 input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Input Container for Icons */
.input {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px; /* Reduce padding */
    margin-bottom: 15px;
    width: 100%; /* Ensure full width */
    box-sizing: border-box;
}

.input .icon {
    flex-shrink: 0; /* Prevents icon from shrinking */
    margin-right: 10px;
    color: #666;
}

.input input {
    flex: 1; /* Allow input to take up remaining space */
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    width: 100%; /* Ensure full width */
    min-width: 0; /* Prevents overflow issues */
}


/* Submit Button */
.submit input {
    width: 100%;
    padding: 10px;
    background-color: #388E3C;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit input:hover {
    background-color: #0056b3;
}

/* Toggle Link */
.toggle-link {
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

.toggle-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
    .LOGIN-PAGE {
        width: 90%;
        padding: 15px;
    }

    h2 {
        font-size: 18px;
    }
}

/* Hidden Forms */
.form-container {
    display: none;
}

.form-container.active {
    display: block;
}
