/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.form-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    margin-left: 20px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 400px;
}

h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
    font-weight: lighter;
}

label {
    display: block;
    margin: 5px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button.next-Step {
    float: left;
}

.pricing-card {
    width: 200px;
    border: 2px solid blueviolet;
    border-radius: 8px;
    padding: 0px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}
.pricing-card-hover {
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}
.img {
   width: 50px;
   height: 50px;
   background-color: #f28b82; /*Example color*/ 
   border-radius: 50%;
   margin: 0 auto 20px;
}
.h2 {
    font-size: 10px;
    margin-bottom: 10px;
    color: #333;
}
.price {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
}
.free-months {
    font-size: 16px;
    color: #888;
}
button.GoBack {
    float: left;
    display: none;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

