#gpm-forgot-pwd-container-main-data{
    width: 100%;
}
#gpm-forgot-pwd-container-main {
    width: 90%;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: auto;
    margin-top: 40px;
}

.gpm-forgot-password-container {
    width: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gpm-forgot-password-header {
    background-color: #3949ab;
    color: white;
    padding: 20px;
    text-align: center;
}

.gpm-forgot-password-header-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 24px;
}

.gpm-forgot-password-form-container {
    padding: 30px;
}

.gpm-forgot-password-form-group {
    margin-bottom: 20px;
    position: relative;
}

.gpm-forgot-password-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: black;
}

.gpm-forgot-password-form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gpm-forgot-password-form-group input:focus {
    border-color: #3949ab;
    outline: none;
    box-shadow: 0 0 5px rgba(57, 73, 171, 0.3);
}

.gpm-forgot-password-form-group i {
    position: absolute;
    right: 15px;
    top: 45px;
    color: black;
}

.gpm-forgot-password-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #3949ab;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gpm-forgot-password-submit-btn:hover {
    background-color: #303f9f;
}

@media (max-width: 480px) {
    .gpm-forgot-password-container {
        width: 90%;
    }
}