body {
    background-image: url(img.png);
    background-repeat: no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

form {
    padding: 50px 55px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: left;
    width: 270px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

h2 {
    color: #283629;
    font-size: 35px;
    text-align: center;
}

label {
    color: #283629;
    font-size: 15px;
    font-weight: 1000;
    margin-bottom: 15px;
}

input, textarea {

    padding: 17px 25px;
    border-radius: 25px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    border: 2PX solid #F0FAF1;
    color: #282b36;
    outline: none;

}

input::placeholder, textarea::placeholder {
    color: #b5cab6;
}

.form-txt {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.form-txt a {
    color: #0786fd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn {
    font-size: 16px;
    color: #FFFFFF;
    border: 0;
    border-radius: 25px;
    background-color: #12c9d6;
    box-shadow: 0 0 20px rgba(62, 133, 214, 0.4);
    cursor: pointer;
}

.btn:hover {
    background-color: rgb(14, 167, 187);
}

@media(max-width) {

    body {
        padding: 30px;
    }     

    form {
        padding: 50px 30px;
        width: 100%;
    }

    input {
        padding: 15px;
    } 


}