/* style.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #035d8e;
}
.navbar {
    background-color: #035d8e;
    overflow: hidden;
    position: fixed;
    /* Fixed position to stay at the top */
    width: 100%;
    /* Full width */
    top: 0;
    /* Stick to the top */
    z-index: 1000;
    /* Ensure it's on top of other elements */
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.onboarding-container {
    max-width: 600px;
    width: 100%;
    background-color: #fff; /* Secondary color - white */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-left: 500px;
    margin: -3px 10px 0 auto
}
.Fit-me-home{
    color: white;
    text-align: center;
}
.grassroot{
    color: grey;
    text-align: left;
    margin-top: -150px;
}

.onboarding-step {
    display: none;
    padding: 20px;
    box-sizing: border-box;
}

.onboarding-step.active {
    display: block;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.button {
    padding: 10px 20px;
    background-color: #035d8e; /* Primary color - green */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color:#035d8e; /* Darker shade of green on hover */
}

/* General styles for signup forms */
.onboarding-step form {
    max-width: 400px;
    margin: 0 auto;
}

.onboarding-step form label {
    display: block;
    margin-bottom: 8px;
}

.onboarding-step form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

/* Teacher signup form styles */
.onboarding-step form.teacher-signup-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Student signup form styles */
.onboarding-step form.student-signup-form {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.home-container {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    margin: 120px auto 20px;
    margin-top: 700px;
    /* Adjust margin-top to make space for the fixed navbar */
}

.features {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    width: 30%;
    /* Adjust the width as needed */
    margin-bottom: 20px;
    text-align: center;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Optional: Add border radius for rounded corners */
}

.dashboard-container {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    padding: 20px;
    height: 500px;
}
.dashboard-container1 {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    padding: 20px;
    height: 150px;
    
}
.dashboard-container2 {
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    padding: 20px;
    height: 150px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    margin: 10px;
    /* Add some margin for spacing between columns */
}

.col-1 {
    flex-basis: 100%;
}

.col-2 {
    flex-basis: calc(50% - 20px);
    /* Adjusted width for col-2 */
}

.button {
    padding: 10px 20px;
    background-color: #035d8e;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    margin-top: 20px;
}

.button:hover {
    background-color: #035d8e;
}
