        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .restpwd-forget-password {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100vh;
        }
        .restpwd-forget-pass-box {
            max-width: 500px;
            width: 100%;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
            border: 1px solid rgb(171, 171, 171);
            border-radius: 12px;
        }
        .restpwd-forget-head {
            background-color: #27b0c2;
            padding: 14px 16px;
            color: rgb(255, 255, 255);
            border-radius: 10px 10px 0px 0px;
        }
        .restpwd-forget-head h2 {
            font-size: 18px;
        }
        .restpwd-forget-body {
            padding: 20px 15px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-direction: column;
        }
        .restpwd-pass {
            width: 100%;
            position: relative;
        }
        .restpwd-pass input {
            width: 100%;
            padding: 6px 10px;
            border-radius: 4px;
            border: 1px solid gray;
            outline: none;
            font-size: 14px;
        }
        .restpwd-pass i {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #006e7c;
        }
        .restpwd-pass-button button {
            padding: 5px 10px;
            font-size: 14px;
            width: 250px;
            background-color: #27b0c2;
            border-radius: 4px;
            border: 1px solid gray;
            font-weight: 500;
            color: rgb(255, 255, 255);
            font-weight: 500;
            cursor: pointer;
        }
        .restpwd-message {
            font-size: 12px;
        }
