body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #028742;
    color: white;
    padding: 10px 20px;
    border-bottom: 6px solid transparent;
    border-image: linear-gradient(to right, rgba(173, 216, 230, 0.5) 40%, rgba(173, 216, 230, 0.5) 60%) 1;
}



.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: #dff0d8; 
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background: white;
    color: #028742;
    border-bottom: 5px solid #028742;
}

.hero .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #028742;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero .cta-button:hover {
    background-color: #025f30; 
}

.content {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #fff; 
}

.content .card {
    background: white;
    padding: 20px;
    margin: 10px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s;
}

.content .card:hover {
    transform: scale(1.05);
}

.main-footer {
    background-color: #028742;
    color: white;
    text-align: center;
    padding: 10px 0;
}



.signup-wrapper {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    color: #028742; 
    font-size: 24px;
    margin-bottom: 5px;
}

.header h2 {
    color: #333;
    font-size: 18px;
}

.signup-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-image {
    height: 40px;
}

.refresh-btn {
    background-color: #028742;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
}

.btn-green {
    background-color: #028742;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.btn-green:hover {
    background-color: #025f30; 
}

.additional-info {
    text-align: center;
    margin-top: 20px;
}

.additional-info p {
    margin: 5px 0;
}

.additional-info a {
    color: #028742;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}
/* Inline adjustments */
        .signup-form .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px; /* Adjusting to avoid overlap */
            font-size: 14px;
            box-sizing: border-box; /* Prevent overflow */
        }

        .signup-form .btn-green {
            display: inline-block;
            padding: 8px 20px; /* Reduced padding for smaller button */
            background-color: #028742;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            font-size: 16px;
            text-align: center;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .signup-form .btn-green:hover {
            background-color: #025f30;
        }

        .captcha-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .captcha-image {
            height: 40px;
        }

        .refresh-btn {
            background-color: #028742;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 5px 10px;
            font-size: 14px;
            cursor: pointer;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .signup-form {
            margin-top: 20px;
        }
		
.error {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    text-align:center;
	 display: block;
	 margin: auto;
	 width: 100%;
}


input.error {
    border: 1px solid red;
    background-color: #ffe6e6;
}
.success-message {
    text-align: center;
    padding: 20px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
}
.success-message h4 {
    margin: 0 0 10px;
    font-size: 1.5em;
}
.success-message p {
    margin: 0;
    font-size: 1em;
}

.form-group.row {
    display: flex;
    justify-content: space-between;
    gap: 15px; /* Adjust spacing between columns */
}

/* Add specific column width classes */
.col-1 { flex: 0 0 8.33%; }
.col-2 { flex: 0 0 16.66%; } 
.col-3 { flex: 0 0 25%; } 
.col-4 { flex: 0 0 33.33%; } 
.col-5 { flex: 0 0 41.66%; } 
.col-6 { flex: 0 0 50%; } 
.col-7 { flex: 0 0 58.33%; } 
.col-8 { flex: 0 0 66.66%; } 
.col-9 { flex: 0 0 75%; } 
.col-10 { flex: 0 0 83.33%; } 
.col-11 { flex: 0 0 91.66%; } 
.col-12 { flex: 0 0 100%; } 

/* Ensure responsiveness */
@media (max-width: 768px) {
    .col {
        flex: 0 0 100%; 
    }
}


.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.container {
    display: flex;
}

.side-nav {
    width: 220px;
    background-color: #028742;
    color: white;
    padding: 20px;
    min-height: 100vh;
}

.side-nav a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 5px;
}

.side-nav a:hover,
.side-nav a.active {
    background-color: #025f30;
}

.main-content {
    flex: 1;
    background-color: #fff;
    padding: 20px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.breadcrumb a {
    color: #028742;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.form-layout {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-box {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-container {
    margin: 20px 0;
}

.progress-bar {
    background-color: #028742;
    height: 10px;
    border-radius: 5px;
    width: 70%; /* Example width */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}
.info-box-header {
    background-color: #d4edda; 
    padding: 0 10px; 
    border-radius: 8px 8px 0 0; 
    text-align: left;
    font-size: 18px; 
    font-weight: bold;
    color: #155724; 
    margin: -20px -16px 10px; 
    height: 30px; 
    display: flex; 
    align-items: center; 
}

.calendar-icon {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

        .btn {
            background-color: #028742;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            text-align: center;
            margin-top: 15px;
        }

        .btn:hover {
            background-color: #025f30;
        }
		
		.btn-primary {
            background-color: #028742;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #025f30;
        }
		
.text-success {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid #d4edda;
    background-color: #d4edda;
    color: #155724;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-success::before {
    content: '\2714'; /* Checkmark icon */
    font-size: 18px;
    color: #155724;
    margin-right: 10px;
}

.text-danger {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #f8d7da;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-danger::before {
    content: '\26A0'; /* Warning icon */
    font-size: 18px;
    color: #721c24;
    margin-right: 10px;
}



/* Container */
.container {
    display: flex;
    min-height: 100vh;
}


.side-nav a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 12px;
    transition: background-color 0.3s ease;
}

.side-nav a:hover,
.side-nav a.active {
    background-color: #025f30;
}



/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #028742;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Form Layout */
.form-layout {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Info Box */
.info-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: scale(1.02);
}

.info-box-header {
    background-color: #d4edda;
    padding: 12px;
    border-radius: 10px 10px 0 0;
    color: #2b7a4b;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

/* Label and Paragraph Styling */
label, p {
    font-size: 15px;
    margin: 8px 0;
    
}

p strong {
    color: #028742;
}

/* Icon Styling for FontAwesome */
.fas {
    color: #028742;
    margin-right: 10px;
}

/* Profile Picture */
.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 15px;
}

/* Hyperlinks and Buttons */
asp:HyperLink, a {
    color: #028742;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #028742;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

asp:HyperLink:hover, a:hover {
    background-color: #028742;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .side-nav {
        width: 100%;
        height: auto;
        position: static;
    }

    .main-content {
        margin-left: 0;
        padding: 15px;
    }

    .form-layout {
        padding: 20px;
    }
}

.side-nav .nav-link i {
    color: white; 
    margin-right: 8px; 
}
.side-nav .nav-link:hover i {
    color: #d1d1d1; 
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #028742;
    color: white;
    
    
}

.logo h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
}

.logo i {
    color: white; 
    margin-right: 10px; 
    font-size: 4rem; 
    vertical-align: middle;
}
.breadcrumb i {
    margin-right: 5px;
    color: #028742;
    font-size: 16px;
    vertical-align: middle;
}
h3 i {
    margin-right: 10px;
    color: #028742; 
    font-size: 24px;
    vertical-align: middle;
}
.green-text {
    color: green;
}
.large-icon {
    font-size: 36px; 
}

h3 i {
    margin-right: 10px;
    color: #028742; 
    font-size: 24px; 
    vertical-align: middle;
}

.logo {
    display: flex;
    align-items: center; 
}

.logo img {
    height: 80px;
    margin-right: 10px; 
}

.logo-text {
    font-size: 24px; 
    line-height: 80px; 
}



.user-menu {
    position: relative;
    display: inline-block;
    cursor: pointer;
	margin-top:-10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: top;
}

/* Dropdown Menu */
.user-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 10px;
    margin: 0;
    z-index: 1000;
    border-radius: 8px;
    width: 200px; 
    word-wrap: break-word; 
    white-space: normal; 
}


.user-menu .dropdown li {
    margin: 0;
    padding: 5px 15px;
	 font-size: 14px; 
}


.user-menu .dropdown li a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word; 
    overflow-wrap: break-word; 
	 font-size: 14px; 
}

.user-menu .dropdown li a:hover {
    background-color: black;
    color: white; 
}


.user-menu:hover .dropdown {
    display: block;
}



/* Progress Bar Container */
.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress-bar {
    height: 100%;
    background-color: #028742;
    text-align: center;
    color: white;
    line-height: 20px;
    border-radius: 10px 0 0 10px;
    transition: width 0.5s ease;
}

/* Progress Text */
.progress-text {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
    text-align: left;
}



