html {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Open Sans', Arial, sans-serif;
    min-height: 100%;

}

body {
	height: 100%;
}

img.logo {
	width: 80%;
	max-width: 800px;
}

#team img {
	max-width: 100%;
}

html {
  background: 
    /* Top left corner radial gradient */
    radial-gradient(circle at 0% 0%, rgba(255,255,224,0.4), transparent 50%),
    
    /* Bottom right corner radial gradient */
    radial-gradient(circle at 100% 100%, rgba(224,255,255,0.4), transparent 50%),
    
    /* Centered radial gradient */
    radial-gradient(circle at 50% 50%, rgba(255,224,224,0.5), transparent 60%),
    
    /* Diagonal linear gradient */
    linear-gradient(45deg, rgba(0, 128, 128, 0.5), rgba(128, 0, 128, 0.5)),
    
    /* Vertical linear gradient */
    linear-gradient(to bottom, rgba(255, 192, 203, 0.3), rgba(192, 192, 255, 0.3)),
    
    /* Base color */
    rgb(130,180,250); /* Lavender background */
    
  background-blend-mode: multiply;
}

hr {
	color: #fff;
}

header h1 {
    margin: 0;
    color: #fff;
}

header p {
    color: #ddd;
    font-size: 150%;
}

form {
    background: rgba(255, 255, 255, 1.0);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: #333;
}

input[type="email"], input[type="checkbox"] {
    margin-top: 5px;
}

button, a.button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover, a.button:hover {
    background-color: #45a049;
}

footer p {
    color: #ddd;
    margin-top: 20px;
}

a {
    color: #6a11cb;
}

a:hover {
    color: #fff;
}

/* Apply a max-width to the form for better readability */
form {
    max-width: 32rem;
    margin: auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 1.0);
    border-radius: 5px;
}

/* Enhance base typography */
body {
    font-size: 1.125rem; /* Around 18px */
    line-height: 1.5;
}

/* Style interactive states for inputs */
input[type='checkbox'],
input[type='radio'],
button, a.button {
    padding: 0.5rem;
    font-family: inherit;
    font-size: inherit;
    transition: box-shadow .2s, transform .2s;
}

input[type='checkbox']:focus,
input[type='radio']:focus,
button:focus, a.button:focus {
    box-shadow: 0 0 0 2px rgba(39, 94, 254, .25);
}

/* Example of custom properties for styling states */
:root {
    --active: #275EFE;
    --active-inner: #fff;
    --border: #BBC1E1;
    --border-hover: #275EFE;
    --focus: 2px rgba(39, 94, 254, .25);
}

input[type='checkbox'],
input[type='radio'] {
    border: 1px solid var(--border);
}

input[type='checkbox']:checked,
input[type='radio']:checked {
    --border: var(--active);
}

input[type='checkbox']:hover,
input[type='radio']:hover {
    --border: var(--border-hover);
}

header p+p {
	margin-top: -30px;
}

form button {
    font-family: 'Poppins', sans-serif;
}

input[type="email"], input[type="checkbox"] {
    padding: 12px; /* Adds more space inside the input fields */
    font-size: 16px; /* Increases the text size for better readability */
    border: 1px solid #ccc; /* Optional: adds a border to make the input fields stand out */
    border-radius: 4px; /* Optional: rounds the corners of the input fields */
}

/* Styles for the button to match the inputs */
button, a.button {
    padding: 12px 20px; /* Adjust padding as needed */
    font-size: 16px; /* Match input text size for consistency */
    cursor: pointer;
}

input[type="email"], input[type="checkbox"] {
    padding: 12px; /* Adds more space inside the input fields */
    font-size: 16px; /* Increases the text size for better readability */
    border: 1px solid #ccc; /* Optional: adds a border to make the input fields stand out */
    border-radius: 4px; /* Optional: rounds the corners of the input fields */
}


@media screen and (max-width: 768px) {
    input[type="email"], input[type="checkbox"], button, a.button {
        padding: 10px; /* Slightly reduce padding for smaller screens */
        font-size: 18px; /* Reduce font size for better fit on smaller screens */
    }
}

form {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

input, button, a.button {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, button, input[type="submit"], a.button {
    font-family: 'Work Sans', sans-serif;
}

footer p {
    margin: 0; /* Removes default margin */
    padding: 5px; /* Sets smaller padding; adjust as needed */
    font-size: 12px;
}
footer {
    padding: 0 10px; /* Adjust padding as needed for a single line */
    margin: 0; /* Adjust margin as needed */
    font-size: 12px; /* Keep footer font size consistent */
}

@media screen and (min-width: 768px) {
    body, button, input, textarea, a.button {
        font-size: 30px; /* Increase font size for larger screens */
    }

    h1 {
        font-size: 80px;
    }

    p {
	font-size: 36px
    }
}

@media screen and (min-width: 768px) {
    input[type="email"], input[type="checkbox"] + label, button, a.button {
        min-width: 280px; /* Makes input and button justify with the rest */
        max-width: 500px; /* Adjust based on your design needs */
        font-size: 24px;
    }

    input[type="checkbox"] {
        transform: scale(1.2); /* Makes checkbox bigger */
	position: relative;
        top: -2px;
	margin-right: 10px; /* Adds space between the checkbox and the label */
    }

    .agree-text {
        font-size: 20px; /* Adjust the font size as needed */
    }

    form {
	padding: 3rem;
    }
}

button, a.button {
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow to the button */
}

header {
    padding-top: 20px; /* Increase the top padding as needed */
}

.consulting-notice {
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 50px; /* Adjusts spacing to bring the line closer to the form */
    font-size: 24px;
}

.consulting-notice a {
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: underline;
}

.consulting-notice a:hover, .consulting-notice a:visited, .consulting-notice a:active {
    color: white;
}

#formResponse {
    color: white;
    font-family: 'Lato', sans-serif;
    display: none; /* Initially hidden */
}

#formResponse {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px; /* Similar padding to form */
    border-radius: 5px; /* If your form has rounded corners */
    border: 1px solid #ccc; /* Similar border to form */
    font-family: 'Inter', sans-serif; /* Keeping the font consistent */
    color: black; /* Text color */
    display: none; /* Initially hidden */
    margin: auto; /* Centered if form is also centered */
    max-width: 500px; /* Match form width or adjust as necessary */
    text-align: center; /* If form text is centered */
}

@media screen and (max-width: 768px) {
    #formResponse {
        max-width: 80%;
    }
}


.how-it-works {
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 40rem;
  margin: auto;
}

.how-it-works h2 {
  color: #333;
  font-size: 28px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.how-it-works p,
.how-it-works li {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  padding: 10px;
}

.how-it-works ol {
  padding-left: 24px;
}

.how-it-works a {
  color: #1a0dab;
  text-decoration: none;
}

.how-it-works a:hover {
  text-decoration: none;
  color: #1a0dfb;
}

.how-it-works a.button {
  color: #fff;
  text-decoration: none;
}

.how-it-works a.button:hover {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 600px) {
  .how-it-works {
    padding: 15px;
  }

  .how-it-works h2 {
    font-size: 18px;
  }

  .how-it-works p,
  .how-it-works li {
    font-size: 16px;
  }
}

.super-em {
  text-decoration: underline;
}

footer a {
	color: black;
}


table td {
	border: 2px solid rgb(200,200,200);
	padding: 10px;
	font-size: 18px;
}

table th {
	font-size: 16px;
	padding: 10px;
}

table {
	border-collapse: collapse;
	margin: auto;
}

@media screen and (max-width: 600px) {
	table th {
		font-size: 14px;
	}

	table td {
		font-size: 12px;
		padding: 2px;
	}
}

nav a {
	font-size: 16px;
	padding: 0 10px;
	text-decoration: none;
	color: white;
	font-family: 'Poppins', sans-serif;
	
}


.pricing-container {
	display: flex;
}

.pricing-card {
  padding: 40px;
  background-color: #eef;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 40rem;
  margin: auto 10px;
  flex: 2;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}


.pricing-card p {
	font-size: 1.2rem;
	text-align: center;
	color: #222;
}

.pricing-card .price {
	font-family: "Poppins", sans-serif;
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: -35px;
	color: #111;
}

.pricing-card .per-user {
	font-size: 1.0rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.pricing-container {
		flex-direction: column;
	}
}

.date {
	font-size: 0.8rem;
}

#blog a {
	font-size: 1.5rem;
}

p.evals-post-link {
  margin: 0;
  font-size: 12px;
  text-align: center;
  margin-top: -10px;	
}

#consulting p {
	font-family: 'Work Sans', sans-serif;
}

#consulting p:last-child {
	text-align: center;
}
