 body {
        font-family: Arial, sans-serif;
        background: linear-gradient(125deg, #66ea83, #4b71a2);
       
    }
.mcontainer{
 display: flex;
        justify-content: center;
        align-items: center;
        min-height: 90vh;
        margin: 0;
}
    .container {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        width: 450px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        animation: fadeIn 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from {opacity: 0; transform: translateY(20px);}
        to {opacity: 1; transform: translateY(0);}
    }

    h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }

    .step {
        display: none;
    }

    .step.active {
        display: block;
    }

    input {
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-size: 16px;
    }

    .buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }

    button {
        background: #667eea;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        transition: 0.3s;
    }

    button:hover {
        background: #4c51bf;
    }

    .summary {
        background: #f7f7f7;
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
    }

    .progress {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .progress span {
        width: 25%;
        height: 5px;
        border-radius: 5px;
        background: #ddd;
    }

    .progress .active {
        background: #667eea;
    }

        footer{
          text-align: center;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      background-color: #066b85;
    }