body {
    font-family: 'Times New Roman', serif;
    background-image: url(../images/courses-image4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    position: relative;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: -1;
}
h2 {
    margin-bottom: 20px;
    color: #2e3b55;
    font-size: 26px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}


#step { 
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 400px;
    max-width: 100%;
}
h3 {
    display: block;
     margin-bottom: 5px;
    margin-left: -18em;
     
}
#step2 h3 {
    display: block;
     margin-bottom: 5px;
    margin-left: -13em;
     
}
#step3 h3 {
    display: block;
     margin-bottom: 5px;
    margin-left: -15em;
     
}



input {
    width: 95%;
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

input:focus {
    border-color: #6c757d;
    box-shadow: 0 0 8px rgba(108, 117, 125, 0.5);
    outline: none;
}

button {
    background: #2e3b55;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    width: 80%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #495057;
    transform: scale(1.05);
}
@media  only screen and (max-width: 600px) {
    h3 {
    display: block;
     margin-bottom: 5px;
    margin-left: -10em;
     
}
#step2 h3 {
    display: block;
     margin-bottom: 5px;
    margin-left: -5em;
     
}
#step3 h3 {
    display: block;
     margin-bottom: 5px;
    margin-left: -7em;
     
}

    
}