/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4; /* Background color from the second CSS */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container/Card Styles */
.container, .card {
    width: 100%;
    max-width: 600px; /* General max-width */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.card {
    max-width: 400px; /* Specific max-width for card */
}

/* Logo Styles */
.card img {
    display: block;
    margin: 0 auto 20px;
    max-width: 150px; /* Adjusted the size */
    height: auto;
}

/* Heading Styles */
h2 {
    text-align: center;
    color: #06D001;
    margin-bottom: 30px;
}

/* Form Elements */
.form-group, .form-check {
    margin-bottom: 20px;
}

.form-group label, .form-check-label {
    color: #333;
    font-weight: 500; /* Applied to both label types */
}

.form-control {
    border-radius: 5px;
    padding: 10px;
}

/* Button Styles */
.btn-primary {
    background-color: #06D001;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #04a300;
}

/* Password Strength Indicator */
#password-strength {
    font-size: 0.9em;
    margin-top: 10px;
    margin-bottom: 20px;
}

.strength-weak {
    color: red;
}

.strength-medium {
    color: orange;
}

.strength-strong {
    color: green;
}

/* Link Styles */
.login-link, .signup-link {
    margin-top: 20px;
    text-align: center;
}

.login-link a, .signup-link a {
    color: #06D001;
    text-decoration: none;
}

.login-link a:hover, .signup-link a:hover {
    text-decoration: underline;
}

/* Additional Styles */
#password-warning {
    color: red;
    display: none; /* Initially hidden */
}
