    * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background: #ffffff;
        }

        /* .mobile-container {
            min-height: 100vh; 
            justify-content: center;
            padding: 20px;
            display: flex;
        } */
 

        .title {
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            margin: 15px 0 25px;
        }

        .form-group {
            margin-bottom: 14px;
            position: relative;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border-radius: 30px;
            border: none;
            outline: none;
            font-size: 14px;
            background: #4f6368;
            color: #fff;
        }

        .form-control:focus {
            background: #4f6368 !important;
            color: #fff;
            box-shadow: none;
            outline: none;
        }

        .form-control::placeholder {
            color: #e5e5e5;
            font-size: 13px;
        }

        .eye-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #ddd;
            font-size: 14px;
            cursor: pointer;
        }

        .btn {
            width: 100%;
            padding: 14px;
            border-radius: 30px;
            border: none;
            font-size: 15px;
            font-weight: 600;
            background: #3f3f3f; 
            color: #fff;
            cursor: pointer;
            margin-top: 10px;
        }
        .btn:hover {
            background: #3f3f3f;
            color: #fff;
        }
        .btn:focus {
            background: #3f3f3f;
            color: #fff;
        } 

        .checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #555;
        }

        .text-center {
            text-align: center;
            font-size: 14px;
            margin-top: 15px;
        }

        .link {
            text-decoration: none;
            color: #00b894;
            font-weight: 600;
        }    