h2,
label {
    color: #333
}

.password-container {
    margin: 43px auto 73px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    width: 500px
}

.ce_button,
.send-button {
    padding: 10px;
    cursor: pointer
}

.change-password-section {
    text-align: center
}

.icon img {
    width: 50px
}

h2 {
    margin-top: 10px
}

p {
    color: #777;
    font-size: 14px
}

form {
    margin-top: 20px
}

.input-group {
    margin-bottom: 15px;
    text-align: left
}

label {
    text-align: right;
    display: block;
    margin-bottom: 5px
}

.input-wrapper {
    position: relative
}

input[type=password],
input[type=text] {
    text-align: right;
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ddd;
    border-radius: 5px
}

.toggle-password {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer
}

.ce_button {
    width: 80%;
    background-color: #a2c046;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 13px
}

.send-button {
    background-color: #f4f4f4;
    color: #000;
    width: 48%;
    border: none;
    border-radius: 4px
}

.ref_button {
    background: #6e6e73;
    color: #007bff
}

.buttons {
    gap: 50px;
    display: flex;
    justify-content: center;
    margin-top: 13px
}

@media (max-width:600px) {
    .password-container {
        width: 90%;
        padding: 15px
    }

    .ce_button,
    input[type=password] {
        padding: 8px
    }

    h2 {
        font-size: 20px
    }

    p {
        font-size: 12px
    }

    .ce_button {
        font-size: 14px;
        width: 100%
    }

    .password-container .buttons {
        flex-direction: column
    }

    .send-button {
        width: 100%;
        margin-bottom: 10px
    }
}