body{
    font-family: sans-serif;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 10px;
    padding: 0;
}
form {
    padding: 20px 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    text-align: center;
    width: 300px;
    margin-top: 0;
}
.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}
h2 {
    color: black;
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 0;
}
label {
    color: black;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}
input, textarea {
    padding: 8px 12px;
    border-radius: 25px;
    margin-bottom: 10px;
    background-color: #edfff0;
    border: 2px solid #f0faf1; 
    color: black;
    outline: none;
    font-size: 13px;
    border-radius: 15px;
}
input::placeholder, textarea::placeholder {
    color: #9b9b9b;
}    
.form-txt {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.form-txt a {
    color: black;
    font-weight: 600;
    text-decoration: none;
    font-size: 11px;
}
.btn {
    padding: 10px;
    font-size: 14px;
    color: #ffff;
    border: 0;
    border-radius: 15px;
    background-color: #51d945;
    box-shadow: 0 0 20px rgba(25, 254, 0, 0.4);
    cursor: pointer;
}
.btn:hover {
    background-color: #50e045;
}
@media(max-width:400px) {
    body {
        padding: 10px;
    }

    form {
        padding: 50px 30px;
        width: 75%;   
    }
    input {
        padding: 15px;
    }
}
p {
    text-align: left;
    font-size: 13px;
}