body {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;    
}

form {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 50px 35px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 380;
}

form h2 {
    font-size: 20px;
    color: #0D0D0D;
    margin: 0;
}

form p {
    font-size: 16px;
    color: #5E5E5E;
    margin-bottom: 15px;
}

.input-wrapper {
    position: relative;
    width: 205px;
    margin-bottom: 15px;
}

input {
    color: #0D0D0D;
    padding: 20px 15px 20px 60px;
    width: 100%;
    border-radius: 25px;
    border: 0;
    box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
    outline: none;
    font-size: 16px;
}
                                                                                                                                                                                                                 
input::placeholder{
    font-size: 16px;
    color: #BBBBE2;
}

.input-icon {
    position: absolute;
    height: 30px;
    width: 30px;
    left: 20px;
    top: 50%;
    transform: translateY(-55%);
}

.btn {
    padding: 20px;
    background: linear-gradient(
        90deg,
        rgb(56, 226, 104) 25%,
        rgb(29, 138, 82) 100%);
    box-shadow: 0 0 20px rgba(192, 203, 251, 0.7);
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

.btn.hover {
    background: rgb(153, 47, 252);
}

.success {
    position: absolute;
    top: 50px;
    color: #00C83C;
    font-size: 18px;
}

.error {
    position: absolute;
    top: 50px;
    color: #E02D00;
    font-size: 18px;
}

@media(max-width:991px) {
    body {
        padding: 10px;
    }
    form {
        padding: 20px;
        width: 100%;
    }

    .imput-wrapper {
        position: relative;
        width: 88%;
        margin-bottom: 35px;
    }

    input {
        padding: 20px 0px 20px 45px;
    }

    .input-icon {
        height: 20px;
        width: 20px;
    }
}